Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 18, 2020 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/e02dbe74beea5f4423616d361f8ca490 to your computer and use it in GitHub Desktop.
Save parzibyte/e02dbe74beea5f4423616d361f8ca490 to your computer and use it in GitHub Desktop.
// Nodo que tiene la línea
struct nodo {
char linea[MAXIMA_LONGITUD_LINEA];
struct nodo *siguiente;
};
// La parte superior de la lista; es decir, por donde comenzamos
struct nodo *superior = NULL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment