Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- typedef int t_info;
- typedef struct s_nodo
- {
- t_info info;
- struct t_nodo sig;
- } t_nodo;
- typedef t_nodo *t_lista;
- void crearLista(t_lista *);
- int ponerEnLista(t_lista *, const t_info );
- int sacarPrimeroLista(t_lista *, t_info *);
- int sacarUltimoLista(t_lista *, t_info *);
- int main()
- {
- return 0;
- }
- void crearLista(t_lista *l)
- {
- *l = NULL;
- }
- int ponerEnLista(t_lista *l, const t_info *i)
- {
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement