File: strpool.H

package info (click to toggle)
its4 1.1.1-1
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 388 kB
  • ctags: 546
  • sloc: cpp: 5,769; ansic: 686; sh: 374; makefile: 129; lisp: 4
file content (15 lines) | stat: -rw-r--r-- 232 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* strutils.C
 * John Viega
 *
 * Feb 8, 2000
 */

#ifndef __STRPOOL_H__
#define __STRPOOL_H__

void InitStringPool(int capacity, int increment);
void InitStringPool();
int  AddStringToPool(char *s);
char *GetString(int l);

#endif