8 lines
183 B
C
8 lines
183 B
C
#include "stralloc.h"
|
|
#include "buffer.h"
|
|
|
|
int buffer_get_new_token_sa_pred(buffer* b,stralloc* sa,sa_predicate p) {
|
|
stralloc_zero(sa);
|
|
return buffer_get_token_sa_pred(b,sa,p);
|
|
}
|