Files
vasilito facf0c92e0 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

56 lines
952 B
Plaintext

@c This file is part of the GNU gettext manual.
@c Copyright (C) 1995-2020 Free Software Foundation, Inc.
@c See the file gettext.texi for copying conditions.
@node GCC-source
@subsection GNU Compiler Collection sources
@cindex GCC-source
@table @asis
@item RPMs
gcc
@item Ubuntu packages
gcc
@item File extension
@code{c}, @code{h}.
@item String syntax
@code{"abc"}
@item gettext shorthand
@code{_("abc")}
@item gettext/ngettext functions
@code{gettext}, @code{dgettext}, @code{dcgettext}, @code{ngettext},
@code{dngettext}, @code{dcngettext}
@item textdomain
@code{textdomain} function
@item bindtextdomain
@code{bindtextdomain} function
@item setlocale
Programmer must call @code{setlocale (LC_ALL, "")}
@item Prerequisite
@code{#include "intl.h"}
@item Use or emulate GNU gettext
Use
@item Extractor
@code{xgettext -k_}
@item Formatting with positions
---
@item Portability
Uses autoconf macros
@item po-mode marking
yes
@end table