Skip to content

Instantly share code, notes, and snippets.

@RafaelAPB
Created September 24, 2015 23:45
Show Gist options
  • Save RafaelAPB/87c17b1d8d4efb747f3d to your computer and use it in GitHub Desktop.
Save RafaelAPB/87c17b1d8d4efb747f3d to your computer and use it in GitHub Desktop.
/* estrutura lista de tarefas*/
typedef struct lst_tar {
tarefa atual;
tarefa* next;
} l_tarefas;
/* estrutura tarefa */
typedef struct {
*char nome;
int prioridade;
} tarefa;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment