summaryrefslogtreecommitdiffstats
path: root/gettext-tools/src/write-stringtable.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2006-10-16 12:28:26 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:14:07 +0200
commitb8f51f17d196ca7c160715194a4943f815060297 (patch)
treeadd12e68e1b70615fcc445aa64f99f3d7d1a00ed /gettext-tools/src/write-stringtable.h
parent315e38f347702334128e5e503f5634367a1bab3c (diff)
downloadexternal_gettext-b8f51f17d196ca7c160715194a4943f815060297.zip
external_gettext-b8f51f17d196ca7c160715194a4943f815060297.tar.gz
external_gettext-b8f51f17d196ca7c160715194a4943f815060297.tar.bz2
Create an object-oriented interface for the catalog output formats.
Diffstat (limited to 'gettext-tools/src/write-stringtable.h')
-rw-r--r--gettext-tools/src/write-stringtable.h14
1 files changed, 4 insertions, 10 deletions
diff --git a/gettext-tools/src/write-stringtable.h b/gettext-tools/src/write-stringtable.h
index 07dad16..e2fd6b9 100644
--- a/gettext-tools/src/write-stringtable.h
+++ b/gettext-tools/src/write-stringtable.h
@@ -1,5 +1,5 @@
/* Writing NeXTstep/GNUstep .strings files.
- Copyright (C) 2003 Free Software Foundation, Inc.
+ Copyright (C) 2003, 2006 Free Software Foundation, Inc.
Written by Bruno Haible <bruno@clisp.org>, 2003.
This program is free software; you can redistribute it and/or modify
@@ -19,15 +19,9 @@
#ifndef _WRITE_STRINGTABLE_H
#define _WRITE_STRINGTABLE_H
-#include <stdbool.h>
-#include <stdio.h>
-#include <stddef.h>
+#include "write-catalog.h"
-#include "message.h"
-
-/* Output the contents of a PO file in .strings syntax. */
-extern void
- msgdomain_list_print_stringtable (msgdomain_list_ty *mdlp, FILE *fp,
- size_t page_width, bool debug);
+/* Describes a PO file in .strings syntax. */
+extern const struct catalog_output_format output_format_stringtable;
#endif /* _WRITE_STRINGTABLE_H */