File: stringbuf.h

package info (click to toggle)
rpm2html 1.11.2-7
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,496 kB
  • ctags: 995
  • sloc: ansic: 21,966; sh: 2,514; perl: 122; makefile: 75
file content (11 lines) | stat: -rw-r--r-- 221 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
/*
 * stringbuf.h: interface for the String buffering module.
 */

#ifndef __STRINGBUF_H__
#define __STRINGBUF_H__

const char *stringAdd(const char *str);
void  stringFree(const char *str);

#endif /* __STRINGBUF_H__ */