diff options
author | Bruno Haible <bruno@clisp.org> | 2006-10-18 11:24:22 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:14:09 +0200 |
commit | 412d2b4a7ba134358d037fee01d986b5c3be3f20 (patch) | |
tree | d266029b81d081c2e6a9ba2a0b990f44d90ea872 /gettext-tools/src/read-po.h | |
parent | f4db112dba41b3727706bb0f8fe69d81921bbc38 (diff) | |
download | external_gettext-412d2b4a7ba134358d037fee01d986b5c3be3f20.zip external_gettext-412d2b4a7ba134358d037fee01d986b5c3be3f20.tar.gz external_gettext-412d2b4a7ba134358d037fee01d986b5c3be3f20.tar.bz2 |
Reading PO files.
Diffstat (limited to 'gettext-tools/src/read-po.h')
-rw-r--r-- | gettext-tools/src/read-po.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gettext-tools/src/read-po.h b/gettext-tools/src/read-po.h new file mode 100644 index 0000000..0cbd4e9 --- /dev/null +++ b/gettext-tools/src/read-po.h @@ -0,0 +1,27 @@ +/* Reading PO files. + Copyright (C) 2006 Free Software Foundation, Inc. + Written by Bruno Haible <bruno@clisp.org>, 2006. + + 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + +#ifndef _READ_PO_H +#define _READ_PO_H + +#include "read-catalog-abstract.h" + +/* Describes a .po / .pot file parser. */ +extern const struct catalog_input_format input_format_po; + +#endif /* _READ_PO_H */ |