2024-11-12 23:54:49 +01:00
|
|
|
#ifndef S_H_
|
|
|
|
#define S_H_
|
|
|
|
|
|
|
|
#define VERSION "1.0.0"
|
2024-02-02 17:52:21 +01:00
|
|
|
|
2024-02-10 18:29:58 +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
|