00001
00002
00010 #include <cstdlib>
00011 #include <fstream>
00012 #include <iostream>
00013 using namespace std;
00014
00015 #ifndef TT_FILE
00016 #define TT_FILE
00017
00026 void fileAggiungiCampo(const char* nomeFile, const char* s);
00027
00037 void fileAggiungiCampoUltimoChar(const char* nomeFile, const char* s);
00038
00049 void fileNuovoRecord(const char* nomeFile);
00050
00067 char* fileLeggiCampo(const char* nomeFile, int x, int y);
00068
00078 int fileContaRecord(const char* nomeFile);
00079
00087 bool fileEsiste(const char* nomeFile);
00088
00096 char fileUltimoCarattere(const char* nomeFile);
00097
00098 #endif