File: buffer_puts.c

package info (click to toggle)
fnord 1.10-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 324 kB
  • ctags: 167
  • sloc: ansic: 1,894; makefile: 96; sh: 59; perl: 36
file content (6 lines) | stat: -rw-r--r-- 120 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
#include "str.h"
#include "buffer.h"

int buffer_puts(buffer* b,const char* x) {
  return buffer_put(b,x,str_len(x));
}