No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gettext / gettext-tools / src / open-po.h
blobcc561f26f51e77acbff797a9b379f885d38cc59e
1 /* Opening PO files.
2 Copyright (C) 1995-1997, 2000-2003 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
7 any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 #ifndef _OPEN_PO_H
19 #define _OPEN_PO_H
21 #include <stdbool.h>
22 #include <stdio.h>
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
30 /* Open the input file with the name INPUT_NAME. The ending .po is added
31 if necessary. If INPUT_NAME is not an absolute file name and the file is
32 not found, the list of directories in "dir-list.h" is searched. The
33 file's pathname is returned in *REAL_FILE_NAME_P, for error message
34 purposes. */
35 extern FILE *open_po_file (const char *input_name, char **real_file_name_p,
36 bool exit_on_error);
39 #ifdef __cplusplus
41 #endif
44 #endif /* _OPEN_PO_H */