9os

Experimental kernel using plan9 ideas for embedded device
git clone git://git.simple-cc.org/9os
Log | Files | Refs | README | LICENSE

tostring.c (186B)


      1 #include <string.h>
      2 
      3 #include <serialize.h>
      4 
      5 unsigned char *
      6 tostring(unsigned char *p, char *s)
      7 {
      8 	int len = strlen(s);
      9 
     10 	p = tobytes(p, len, 2);
     11 	memcpy(p, s, len);
     12 	return p + len;
     13 }