добивание живых задач, отключение лишней рассылки админам, настройка удаления или не удаления пакета на машине
This commit is contained in:
2025-03-14 13:48:30 +03:00
parent 9f4eb9d88e
commit a2017f9e01
17 changed files with 95 additions and 32 deletions

View File

@@ -24,6 +24,21 @@ public:
ptr = NULL;
}
}
String read() {
int c;
String res;
do {
c = fgetc(ptr);
switch (c){
case EOF:
break;
default:
res.addChar(c);
break;
}
} while (c!=EOF);
return res;
}
Text* readLines() {
Text* lines = new Text();
int c;