BarryServer : Git

All the code for all my projects
// BarryServer : Git / IRCWebHooks / blob / 3a8789aa42abfd82ef3c2612345df637301092f2 / src / list.h

// Related

IRCWebHooks

Barry Adding files 3f04e22 (3 years, 3 months ago)
#ifndef LIST_H
#define LIST_H

#include <stdbool.h>

struct Node {
	char data[32];
	struct Node *next;
};

void insert_first(char *data);
struct Node *delete_first(void);
bool is_empty(void);
int length(void);
struct Node *find(char *data);
struct Node *delete(char *data);

#endif