/
solidbase
/
C2_SimpleBashUtils
Обзор
Документация
Войти
/
solidbase
/
C2_SimpleBashUtils
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
src/grep/process.h
11 строк
242 B
Dmitrii Isaev
grep: implement basic substring search without flags
21 ноя 2025, 07:36
21 ноя 2025, 07:36
06cd98a
Код
Авторство
О чём код?
#ifndef SRC_GREP_PROCESS_H_ #define SRC_GREP_PROCESS_H_ #include <stdbool.h> #include "options.h" bool grep_file(const char* path, const Options* opts, bool show_filename, bool* matched_any); #endif // SRC_GREP_PROCESS_H_