Skip to content
Snippets Groups Projects
slist.h 229 B
Newer Older
Bruce Cowan's avatar
Bruce Cowan committed
#pragma once

typedef struct _SList SList;
struct _SList
{
	char  *key;
	char  *value;
	SList *next;
};

SList * slist_prepend (SList      *list,
                       const char *key,
                       const char *value);