Last active
December 19, 2015 13:18
-
-
Save jonatasnona/5960732 to your computer and use it in GitHub Desktop.
Criar um arquivo chamado linked-list.c
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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