Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / src / x-perl.h
1 /* xgettext Perl backend.
2    Copyright (C) 2002-2003, 2006, 2010, 2015 Free Software Foundation,
3    Inc.
4    Written by Guido Flohr <guido@imperia.net>, 2002-2003
5
6    This program is free software: you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19
20 #include <stdio.h>
21
22 #include "message.h"
23 #include "xgettext.h"
24
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30
31 #define EXTENSIONS_PERL \
32   { "pl",    "perl"   },                                                \
33   { "PL",    "perl"   },                                                \
34   { "pm",    "perl"   },                                                \
35   { "perl",  "perl"   },                                                \
36   { "cgi",   "perl"   },                                                \
37
38 #define SCANNERS_PERL \
39   { "perl",             extract_perl,                                   \
40             &flag_table_perl, &formatstring_perl, &formatstring_perl_brace, NULL }, \
41
42 /* Scan a Perl file and add its translatable strings to mdlp.  */
43 extern void extract_perl (FILE *fp, const char *real_filename,
44                           const char *logical_filename,
45                           flag_context_list_table_ty *flag_table,
46                           msgdomain_list_ty *mdlp);
47
48 extern void x_perl_keyword (const char *keyword);
49 extern void x_perl_extract_all (void);
50
51 extern void init_flag_table_perl (void);
52
53
54 #ifdef __cplusplus
55 }
56 #endif