10 lines
134 B
C
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
|
||
|
|