9 lines
113 B
C
9 lines
113 B
C
#ifndef S_H_
|
|
#define S_H_
|
|
|
|
#include <stdio.h>
|
|
|
|
void *memalloc(size_t size);
|
|
char **argsplit(char *line);
|
|
|
|
#endif
|