From f85a71050ac1ea774204b24a68f679f5e6976def Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Mon, 23 Jul 2001 08:39:51 +0000 Subject: Add prototypes to avoid warnings. --- iconv/strtab.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'iconv/strtab.c') diff --git a/iconv/strtab.c b/iconv/strtab.c index 49fb254..d567f57 100644 --- a/iconv/strtab.c +++ b/iconv/strtab.c @@ -68,6 +68,24 @@ static size_t ps; extern void *xmalloc (size_t n) __attribute_malloc__; +/* Prototypes for our functions that are used from iconvconfig.c. If + you change these, change also iconvconfig.c. */ +/* Create new C string table object in memory. */ +extern struct Strtab *strtabinit (void); + +/* Free resources allocated for C string table ST. */ +extern void strtabfree (struct Strtab *st); + +/* Add string STR (length LEN is != 0) to C string table ST. */ +extern struct Strent *strtabadd (struct Strtab *st, const char *str, + size_t len); + +/* Finalize string table ST and store size in *SIZE and return a pointer. */ +extern void *strtabfinalize (struct Strtab *st, size_t *size); + +/* Get offset in string table for string associated with SE. */ +extern size_t strtaboffset (struct Strent *se); + struct Strtab * strtabinit (void) -- cgit v1.1