mirror of
https://github.com/openharmony/third_party_gettext.git
synced 2026-08-27 02:51:17 -04:00
7200ac4191
* gnulib-local/lib/noop-styled-ostream.oo.h: New file, based on gnulib-local/lib/fd-styled-ostream.oo.h. * gnulib-local/lib/noop-styled-ostream.oo.c: New file, based on gnulib-local/lib/fd-styled-ostream.oo.c. * gnulib-local/modules/noop-styled-ostream: New file, based on gnulib-local/modules/fd-styled-ostream. * gnulib-local/Makefile.am (EXTRA_DIST): Remove lib/fd-styled-ostream.oo.[hc] and modules/fd-styled-ostream. Add lib/noop-styled-ostream.oo.[hc] and modules/noop-styled-ostream. * libtextstyle/woe32dll/c++noop-styled-ostream.cc: New file, based on libtextstyle/woe32dll/c++fd-styled-ostream.cc. * libtextstyle/gnulib-local/modules/noop-styled-ostream.diff: New file, based on libtextstyle/gnulib-local/modules/fd-styled-ostream.diff. * gnulib-local/lib/fd-styled-ostream.oo.h: Remove file. * gnulib-local/lib/fd-styled-ostream.oo.c: Remove file. * gnulib-local/modules/fd-styled-ostream: Remove file. * libtextstyle/woe32dll/c++fd-styled-ostream.cc: Remove file. * libtextstyle/gnulib-local/modules/fd-styled-ostream.diff: Remove file. * libtextstyle/autogen.sh (GNULIB_MODULES): Add noop-styled-ostream. Remove fd-styled-ostream. * libtextstyle/lib/misc.c: Include noop-styled-ostream.h, fd-ostream.h. (styled_ostream_create): Call fd_ostream_create and noop_styled_ostream_create instead of fd_styled_ostream_create. * libtextstyle/lib/textstyle.h (noop_styled_ostream_t): New type. (noop_styled_ostream_*): New declarations. * libtextstyle/doc/libtextstyle.texi (The noop_styled_ostream class): New subsection.
52 lines
1.5 KiB
C
52 lines
1.5 KiB
C
/* Miscellaneous public API.
|
|
Copyright (C) 2019 Free Software Foundation, Inc.
|
|
Written by Bruno Haible <bruno@clisp.org>, 2019.
|
|
|
|
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 <https://www.gnu.org/licenses/>. */
|
|
|
|
#include <config.h>
|
|
|
|
/* Specification. */
|
|
#include "misc.h"
|
|
|
|
#include "term-styled-ostream.h"
|
|
#include "noop-styled-ostream.h"
|
|
#include "fd-ostream.h"
|
|
#include "exitfail.h"
|
|
|
|
extern int xmalloc_exit_failure;
|
|
|
|
|
|
styled_ostream_t
|
|
styled_ostream_create (int fd, const char *filename, ttyctl_t tty_control,
|
|
const char *css_filename)
|
|
{
|
|
styled_ostream_t stream;
|
|
|
|
stream = term_styled_ostream_create (fd, filename, tty_control, css_filename);
|
|
if (stream == NULL)
|
|
stream =
|
|
noop_styled_ostream_create (fd_ostream_create (fd, filename, true), true);
|
|
|
|
return stream;
|
|
}
|
|
|
|
|
|
void
|
|
libtextstyle_set_failure_exit_code (int exit_code)
|
|
{
|
|
exit_failure = exit_code;
|
|
xmalloc_exit_failure = exit_code;
|
|
}
|