00001
00002
00003
00004
00005 #ifndef __FFORMAT_H
00006 #define __FFORMAT_H
00007
00008
00009 #if defined(__BORLANDC__)
00010 #include <strstrea.h>
00011 #else
00012
00013 #endif
00014 #include "mytypes.h"
00015
00016 #if defined(linux) || defined(unix)
00017 #define stricmp strcasecmp
00018 #endif
00019
00020 extern int myStrNcaseCmp( char* pDestStr, const char* pSourceStr );
00021 extern int myStrCaseCmp( char* string1, char* string2 );
00022 extern char* myStrDup(const char *source);
00023 extern char* fileNameWithoutPath(char* s);
00024 extern char* fileExtOfFilename(char* s);
00025
00026
00027 extern char* returnNextLine( char* pBuffer );
00028
00029 extern void copyStringValueToEOL( char* pSourceStr, char* pDestStr, int destMaxLen );
00030
00031
00032 #endif