Add libString.

This commit is contained in:
rsc 2003-12-11 18:15:57 +00:00
parent 57ccfb9e8f
commit 7f11104a57
20 changed files with 1315 additions and 0 deletions

23
src/libString/s_reset.c Normal file
View file

@ -0,0 +1,23 @@
#include <u.h>
#include <libc.h>
#include "libString.h"
String*
s_reset(String *s)
{
if(s != nil){
s = s_unique(s);
s->ptr = s->base;
*s->ptr = '\0';
} else
s = s_new();
return s;
}
String*
s_restart(String *s)
{
s = s_unique(s);
s->ptr = s->base;
return s;
}