90s/include/90s.h

10 lines
119 B
C
Raw Normal View History

2024-02-02 17:52:21 +01:00
#ifndef RUSH_H_
#define RUSH_H_
#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