summaryrefslogtreecommitdiffstats
path: root/src/po-lex.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2001-01-12 17:00:31 +0000
committerBruno Haible <bruno@clisp.org>2001-01-12 17:00:31 +0000
commit321a5de3ac9fa6888f7229f44c317a2d3b3eb9f3 (patch)
treebd8c4bc9dc94348ca9315698acc18f7e0d8643a1 /src/po-lex.h
parentb479432a465fabfc80e6edfbd5a79b70987c283c (diff)
downloadexternal_gettext-321a5de3ac9fa6888f7229f44c317a2d3b3eb9f3.zip
external_gettext-321a5de3ac9fa6888f7229f44c317a2d3b3eb9f3.tar.gz
external_gettext-321a5de3ac9fa6888f7229f44c317a2d3b3eb9f3.tar.bz2
Plural form handling.
Diffstat (limited to 'src/po-lex.h')
-rw-r--r--src/po-lex.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/po-lex.h b/src/po-lex.h
index 82ae7e8..f9cede0 100644
--- a/src/po-lex.h
+++ b/src/po-lex.h
@@ -1,5 +1,5 @@
/* GNU gettext - internationalization aids
- Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1995-1998, 2000, 2001 Free Software Foundation, Inc.
This file was written by Peter Miller <millerp@canb.auug.org.au>
@@ -122,4 +122,12 @@ extern void po_gram_error_at_line PARAMS ((const lex_pos_ty *__pos,
#endif
+/* Contains information about the definition of one translation. */
+struct msgstr_def
+{
+ char *msgstr;
+ size_t msgstr_len;
+ lex_pos_ty pos;
+};
+
#endif