This commit is contained in:
rsc 2005-01-04 21:18:08 +00:00
parent 66ed321edf
commit 1a0954abb8
20 changed files with 96 additions and 49 deletions

View file

@ -1,7 +1,14 @@
#ifndef _LIBSTRING_H_
#define _LIBSTRING_H_ 1
#if defined(__cplusplus)
extern "C" {
#endif
/*
#pragma src "/sys/src/libString"
#pragma lib "libString.a"
*/
AUTOLIB(String)
/* extensible Strings */
typedef struct String {
@ -44,3 +51,7 @@ extern char *s_rdinstack(Sinstack*, String*);
extern Sinstack *s_allocinstack(char*);
extern void s_freeinstack(Sinstack*);
#endif /* BGETC */
#if defined(__cplusplus)
}
#endif
#endif