ack/lang/basic/lib/lib.h
David Given 3f049a4c29 Basic mid now throws an error on out-of-bounds parameters rather than returning
an uninitialised pointer (and crashing).

Fixes: #54
2018-06-05 09:53:56 +09:00

10 lines
134 B
C

#ifndef LIB_H
#define LIB_H
extern void error(int index);
extern char* salloc(unsigned length);
extern void sfree(char* c);
#endif