You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
358 B
C
14 lines
358 B
C
#include "str.h"
|
|
#include "stralloc.h"
|
|
#include "textcode.h"
|
|
|
|
unsigned long scan_to_sa(unsigned long (*func)(const char*,char*,unsigned long*),
|
|
const char* src,stralloc* sa) {
|
|
unsigned long written;
|
|
unsigned long r;
|
|
if (!stralloc_readyplus(sa,str_len(src))) return 0;
|
|
if ((r=func(src,sa->s+sa->len,&written)))
|
|
sa->len+=written;
|
|
return r;
|
|
}
|