/
niceSOFT
/
patch
Обзор
Документация
Войти
/
niceSOFT
/
patch
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/inp.h
29 строк
1 KB
Paul Eggert
maint: make update-copyright
21 апр 2026, 20:10
21 апр 2026, 20:10
494ee0b
Код
Авторство
О чём код?
/* inputting files to be patched */ /* Copyright 1991-2026 Free Software Foundation, Inc. Copyright 1986, 1988 Larry Wall 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 <http://www.gnu.org/licenses/>. */ /* Number of lines in input file. */ extern idx_t input_lines; /* Description of an input line: a pointer to its start, and the number of bytes in it (including any trailing newline). */ struct iline { char const *ptr; idx_t size; }; struct iline ifetch (idx_t) ATTRIBUTE_PURE; bool get_input_file (char *, char const *, mode_t); void re_input (void); void scan_input (char *, mode_t, int);