Skip to content

Instantly share code, notes, and snippets.

@jonatasnona
Last active December 19, 2015 13:18
Show Gist options
  • Save jonatasnona/5960732 to your computer and use it in GitHub Desktop.
Save jonatasnona/5960732 to your computer and use it in GitHub Desktop.
Criar um arquivo chamado linked-list.c
#include <stdio.h>
#include <stdlib.h>
#include "linkedlist.h"
// insert in the end of the list
void append(int element, list **l) {
}
// removes a specific element from the list
void _list_remove(int element, list **l) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment