1 /***********************************************************************************
2  * an_string.h
3  ***********************************************************************************
4  * anubisnet string work-on library, advanced commands to manipulate strings
5  * Author: Bjoern Berg, June 2002
6  * Email: clergyman@gmx.de
7  *
8  * Implemented for: dbf Reader and Converter for dBase 3
9  * Version 0.2
10  *
11  * History:
12  * - Version 0.2 - April 2003
13  * - Version 0.1.1 - September 2002
14  *   pasted into extra header file to use it in other programmes
15  * - Version 0.1 - June 2002
16  *	 first implementation in dbf.c
17  ************************************************************************************/
18 
19 #ifndef _ANUBISNET_STRING_
20 #define _ANUBISNET_STRING_
21 
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 
26 unsigned char * trim_spaces (unsigned char *dest, const unsigned char *src, size_t srclen);
27 int countumlauts (const char *src);
28 void convuml (char *dest, const char *src);
29 
30 #endif
31 
32