/
niceSOFT
/
groff
Обзор
Документация
Войти
/
niceSOFT
/
groff
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/libs/libgroff/lf.cpp
86 строк
2 KB
G. Branden Robinson
[libgroff]: Annotate similar functions.
31 мар 2026, 02:32
31 мар 2026, 02:32
bcc90cc
Код
Авторство
О чём код?
/* Copyright 1989-2025 Free Software Foundation, Inc. Written by James Clark (jjc@jclark.com) This file is part of groff, the GNU roff typesetting system. groff 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. groff 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/>. */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <ctype.h> #include "cset.h" // csdigit() #include "stringclass.h" // prerequisite for lf.h; string #include "lf.h" // change_filename(), change_lineno() bool interpret_lf_request_arguments(const char *p) { while (*p == ' ') p++; if (!csdigit(*p)) return false; int ln = 0; do { ln *= 10; ln += *p++ - '0'; } while (csdigit(*p)); if (*p != ' ' && *p != '\n' && *p != '\0') return false; while (*p == ' ') p++; if (*p == '\0' || *p == '\n') { change_lineno(ln); return true; } const char *q; for (q = p; *q != '\0' && *q != ' ' && *q != '\n' && *q != '\\'; q++) ; string tem(p, q - p); while (*q == ' ') q++; if (*q != '\n' && *q != '\0') return false; tem += '\0'; change_filename(tem.contents()); change_lineno(ln); return true; } // XXX: This function is nearly identical to `msw2posixpath()` in // "libgroff/relocate.cpp". #if defined(__MSDOS__) || (defined(_WIN32) && !defined(__CYGWIN__)) void normalize_file_name_for_lf_request(string &fn) { int fnlen = fn.length(); for (int i = 0; i < fnlen; i++) { if (fn[i] == '\\') fn[i] = '/'; } } #else void normalize_file_name_for_lf_request(string &) { } #endif // Local Variables: // fill-column: 72 // mode: C++ // End: // vim: set cindent noexpandtab shiftwidth=2 textwidth=72: