campo-sirio/include/utility.h
nik 6edd0f9990 Aggiunta possibilita di appendere ad un file con fcopy
git-svn-id: svn://10.65.10.50/trunk@950 c028cbd2-c16b-5b4b-a496-9718f37d4682
1995-02-02 11:56:16 +00:00

37 lines
727 B
C
Executable File

#ifndef __UTILITY_H
#define __UTILITY_H
#ifndef __STDTYPES_H
#include <stdtypes.h>
#endif
/* @FPUB */
char* format (const char* fmt, ...);
const char* cmd2name(const char* argv0, const char* argv1 = "");
int rtoi(const char * roman);
const char* itor(int i);
bool fcopy(const char* orig, const char* dest, bool append=FALSE);
bool fexist(const char* file);
const char * encode(const char * data);
const char * decode(const char * data);
#if XVT_OS == XVT_OS_SCOUNIX
int stricmp(const char*, const char*);
#endif
const char* esc(const char*);
#define ODD(x) (x & 1)
#define EVEN(x) !(x & 1)
#ifdef __UTILITY_CPP
char __tmp_string[1024];
#else
extern char __tmp_string[1024];
#endif
/* @END */
#endif // __UTILITY_H