|
version 1.1.1.1, 2012/02/21 22:57:48
|
version 1.1.1.2, 2021/03/17 13:38:46
|
|
Line 1
|
Line 1
|
| /* Copyright (C) 1999-2003, 2005, 2008 Free Software Foundation, Inc. | /* Copyright (C) 1999-2003, 2005, 2008, 2012 Free Software Foundation, Inc. |
| This file is part of the GNU LIBICONV Library. |
This file is part of the GNU LIBICONV Library. |
| |
|
| The GNU LIBICONV Library is free software; you can redistribute it |
The GNU LIBICONV Library is free software; you can redistribute it |
|
Line 13
|
Line 13
|
| |
|
| You should have received a copy of the GNU Library General Public |
You should have received a copy of the GNU Library General Public |
| License along with the GNU LIBICONV Library; see the file COPYING.LIB. |
License along with the GNU LIBICONV Library; see the file COPYING.LIB. |
| If not, write to the Free Software Foundation, Inc., 51 Franklin Street, | If not, see <https://www.gnu.org/licenses/>. */ |
| Fifth Floor, Boston, MA 02110-1301, USA. */ | |
| |
|
| /* Creates the aliases2.h table. */ |
/* Creates the aliases2.h table. */ |
| |
|
|
Line 51 static void emit_encoding (FILE* out1, FILE* out2, con
|
Line 50 static void emit_encoding (FILE* out1, FILE* out2, con
|
| |
|
| int main (int argc, char* argv[]) |
int main (int argc, char* argv[]) |
| { |
{ |
| const char * tag = (argc > 1 ? argv[1] : "xxx"); | const char* tag; |
| FILE * stdout2 = fdopen(3, "w"); | char* aliases_file_name; |
| if (stdout2 == NULL) | char* canonical_file_name; |
| | FILE* aliases_file; |
| | FILE* canonical_file; |
| | |
| | if (argc != 4) { |
| | fprintf(stderr, "Usage: genaliases2 tag aliases.h canonical.h\n"); |
| exit(1); |
exit(1); |
| |
} |
| |
|
| |
tag = argv[1]; |
| |
aliases_file_name = argv[2]; |
| |
canonical_file_name = argv[3]; |
| |
|
| |
aliases_file = fopen(aliases_file_name, "w"); |
| |
if (aliases_file == NULL) { |
| |
fprintf(stderr, "Could not open '%s' for writing\n", aliases_file_name); |
| |
exit(1); |
| |
} |
| |
|
| |
canonical_file = fopen(canonical_file_name, "w"); |
| |
if (canonical_file == NULL) { |
| |
fprintf(stderr, "Could not open '%s' for writing\n", canonical_file_name); |
| |
exit(1); |
| |
} |
| |
|
| #define DEFENCODING(xxx_names,xxx,xxx_ifuncs1,xxx_ifuncs2,xxx_ofuncs1,xxx_ofuncs2) \ |
#define DEFENCODING(xxx_names,xxx,xxx_ifuncs1,xxx_ifuncs2,xxx_ofuncs1,xxx_ofuncs2) \ |
| { \ |
{ \ |
| static const char* const names[] = BRACIFY xxx_names; \ |
static const char* const names[] = BRACIFY xxx_names; \ |
| emit_encoding(stdout,stdout2,tag,names,sizeof(names)/sizeof(names[0]),#xxx); \ | emit_encoding(aliases_file,canonical_file,tag,names,sizeof(names)/sizeof(names[0]),#xxx); \ |
| } |
} |
| #define BRACIFY(...) { __VA_ARGS__ } |
#define BRACIFY(...) { __VA_ARGS__ } |
| #define DEFALIAS(xxx_alias,xxx) emit_alias(stdout,tag,xxx_alias,#xxx); | #define DEFALIAS(xxx_alias,xxx) emit_alias(aliases_file,tag,xxx_alias,#xxx); |
| #ifdef USE_AIX |
#ifdef USE_AIX |
| #include "encodings_aix.def" |
#include "encodings_aix.def" |
| #endif |
#endif |
|
Line 77 int main (int argc, char* argv[])
|
Line 99 int main (int argc, char* argv[])
|
| #undef DEFALIAS |
#undef DEFALIAS |
| #undef BRACIFY |
#undef BRACIFY |
| #undef DEFENCODING |
#undef DEFENCODING |
| if (ferror(stdout) || fclose(stdout) || ferror(stdout2) || fclose(stdout2)) | if (ferror(aliases_file) || fclose(aliases_file)) |
| | exit(1); |
| | if (ferror(canonical_file) || fclose(canonical_file)) |
| exit(1); |
exit(1); |
| exit(0); |
exit(0); |
| } |
} |