1 #include "lib9.h" 2 3 void rerrstr(char * buf,uint nbuf)4 rerrstr(char *buf, uint nbuf) 5 { 6 char tmp[ERRMAX]; 7 8 tmp[0] = 0; 9 errstr(tmp, sizeof tmp); 10 utfecpy(buf, buf+nbuf, tmp); 11 errstr(tmp, sizeof tmp); 12 } 13