beginnings of the io library

This commit is contained in:
leitner
2003-09-02 00:14:04 +00:00
parent c845e84c37
commit 49818590ee
20 changed files with 376 additions and 6 deletions

View File

@@ -31,4 +31,7 @@ void array_cats0(array* to,const char* from);
void array_cat0(array* to);
void array_cate(array* to,const array* const from,int64 pos,int64 stop);
#define array_failed(x) (array_bytes(x)==-1)
#define array_allocated(x) (array_bytes(x)==0)
#endif