90s/include/90s.h

12 lines
138 B
C
Raw Normal View History

#ifndef S_H_
#define S_H_
#define VERSION "1.0.0"
2024-02-02 17:52:21 +01:00
#include <stdio.h>
void *memalloc(size_t size);
2024-02-08 20:49:11 +01:00
char **argsplit(char *line);
2024-02-02 17:52:21 +01:00
#endif