/
solidbase
/
C2_SimpleBashUtils
Обзор
Документация
Войти
/
solidbase
/
C2_SimpleBashUtils
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
src/cat/options.h
18 строк
292 B
Dmitrii Isaev
cat: add -v flag, fix -s behavior
29 ноя 2025, 05:51
29 ноя 2025, 05:51
bef67b5
Код
Авторство
О чём код?
#ifndef S21_CAT_OPTIONS_H_ #define S21_CAT_OPTIONS_H_ typedef struct { int n; int b; int s; int e; int t; int E; int T; int v; } Options; int parse_options(int argc, char* const argv[], Options* opts, int* first_file_index); #endif // S21_CAT_OPTIONS_H_