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.
13 lines
329 B
C
13 lines
329 B
C
#include "stralloc.h"
|
|
#include "buffer.h"
|
|
|
|
main() {
|
|
static stralloc sa;
|
|
/* static makes sure sa is initialized and empty;
|
|
* use stralloc_init to initialize and stralloc_copys(&sa,"") to empty */
|
|
if (buffer_get_token_sa(buffer_0,&sa," \t\n",3)==0) {
|
|
buffer_putsa(buffer_1,&sa);
|
|
buffer_putnlflush(buffer_1);
|
|
}
|
|
}
|