/* limpador do luca0N! 3 Copyright (C) 2020 luca0N! This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Contact me by e-mail via */ #include "about.h" #include "str.h" #include "colors.h" #include #include int printLicense(int full){ if (full == 0) { printf("%s\n", LICENSE_0); printf("%s\n", LICENSE_1); printf("%s\n", LICENSE_2); printf("%s\n", LICENSE_3); return 0; } else { FILE* flic = fopen("./LICENSE", "r"); if (flic == NULL){ printf("%s\n", STR_ERROR_LIC); return -1; } char c; while ((c = fgetc(flic)) != EOF) { printf("%c", c); } } } void getAdditionalDirs(){ printf("%sRecolhendo pastas adicionais...\n", ANSI_COLOR_CYAN); //FILE* adf = fopen("./adf.txt", "r"); int dirs; dirs = GetPrivateProfileInt("Pastas", "Pastas", 3, ".\\cfg\\pastas.ini"); printf("%s %d\n", STR_DIR_COUNT, dirs); } void cleanLoadedDirs(){ printf("%s%s\n", ANSI_COLOR_CYAN, STR_CLEANING_DIRS); // TODO: Limpar pastas. } int main(void){ printLicense(0); printf("--------------------\n%s %d, %s\n", PROGRAM_NAME, PROGRAM_SEASON, PROGRAM_VERSION); printf("%s\n--------------------\n\n", PROGRAM_COPYRIGHT); printf("%s%s\n", ANSI_COLOR_YELLOW, STR_USE_WARNING); char in; printf(ANSI_COLOR_RESET); fflush(stdout); scanf("%c", &in); if (in == 'w' || in == 'c') if (printLicense(1) != 0) return 0; if (in != 's' && in != 'S' && in != 'y' && in != 'Y') return 0; getAdditionalDirs(); cleanLoadedDirs(); printf("%s\n", ANSI_COLOR_RESET); return 0; }