diff options
author | Bruno Haible <bruno@clisp.org> | 2003-02-14 14:23:59 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:09:39 +0200 |
commit | 174c5e65818b241961854c61a4a40be52d0bfb02 (patch) | |
tree | ed3a9aa92d8c7d66d0e0db95819fb0935dda2268 /src | |
parent | 44b2e0ed471d80fc04a0d99f456954a5ebc18a08 (diff) | |
download | external_gettext-174c5e65818b241961854c61a4a40be52d0bfb02.zip external_gettext-174c5e65818b241961854c61a4a40be52d0bfb02.tar.gz external_gettext-174c5e65818b241961854c61a4a40be52d0bfb02.tar.bz2 |
Move src/x-c.h to gettext-tools/src/x-c.h.
Diffstat (limited to 'src')
-rw-r--r-- | src/x-c.h | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/src/x-c.h b/src/x-c.h deleted file mode 100644 index 738e19f..0000000 --- a/src/x-c.h +++ /dev/null @@ -1,51 +0,0 @@ -/* xgettext C/C++/ObjectiveC backend. - Copyright (C) 2001-2002 Free Software Foundation, Inc. - Written by Bruno Haible <haible@clisp.cons.org>, 2001. - - 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 2, 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, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ - - -#define EXTENSIONS_C \ - { "c", "C" }, \ - { "h", "C" }, \ - { "C", "C++" }, \ - { "c++", "C++" }, \ - { "cc", "C++" }, \ - { "cxx", "C++" }, \ - { "cpp", "C++" }, \ - { "hh", "C++" }, \ - { "hxx", "C++" }, \ - { "hpp", "C++" }, \ - { "m", "ObjectiveC" }, \ - -#define SCANNERS_C \ - { "C", extract_c, &formatstring_c }, \ - { "C++", extract_c, &formatstring_c }, \ - { "ObjectiveC", extract_c, &formatstring_c }, \ - -/* Scan a C/C++/ObjectiveC file and add its translatable strings to mdlp. */ -extern void extract_c (FILE *fp, const char *real_filename, - const char *logical_filename, - msgdomain_list_ty *mdlp); - - -/* Handling of options specific to this language. */ - -extern void x_c_extract_all (void); - -extern void x_c_keyword (const char *name); -extern bool x_c_any_keywords (void); - -extern void x_c_trigraphs (void); |