Eneboo - Documentación para desarrolladores
|
00001 /*********************************************************************************** 00002 * an_string.h 00003 *********************************************************************************** 00004 * anubisnet string work-on library, advanced commands to manipulate strings 00005 * Author: Bjoern Berg, June 2002 00006 * Email: clergyman@gmx.de 00007 * 00008 * Implemented for: dbf Reader and Converter for dBase 3 00009 * Version 0.2 00010 * 00011 * History: 00012 * - Version 0.2 - April 2003 00013 * - Version 0.1.1 - September 2002 00014 * pasted into extra header file to use it in other programmes 00015 * - Version 0.1 - June 2002 00016 * first implementation in dbf.c 00017 ************************************************************************************/ 00018 00019 #ifndef _ANUBISNET_STRING_ 00020 #define _ANUBISNET_STRING_ 00021 00022 #include <stdio.h> 00023 #include <stdlib.h> 00024 #include <string.h> 00025 00026 unsigned char * trim_spaces (unsigned char *dest, const unsigned char *src, size_t srclen); 00027 int countumlauts (const char *src); 00028 void convuml (char *dest, const char *src); 00029 00030 #endif 00031