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.
11 lines
201 B
C
11 lines
201 B
C
22 years ago
|
#include "stralloc.h"
|
||
|
#include "buffer.h"
|
||
|
|
||
|
main() {
|
||
|
static stralloc sa;
|
||
|
if (buffer_get_token_sa(buffer_0,&sa," \t\n",3)==0) {
|
||
|
buffer_putsa(buffer_1,&sa);
|
||
|
buffer_putnlflush(buffer_1);
|
||
|
}
|
||
|
}
|