Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- stock INI_Create(filename[])
- {
- if(INI_Exist(filename)) return printf("Erro ao criar o arquivo '%s'. O arquivo já existe.");
- new
- File:MeuArquivo;
- MeuArquivo = fopen(filename, io_write);
- fclose(MeuArquivo);
- return 0x1;
- }
Advertisement
Add Comment
Please, Sign In to add comment