~ubuntu-branches/ubuntu/trusty/gettext/trusty

« back to all changes in this revision

Viewing changes to src/write-po.h

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2002-04-10 13:17:42 UTC
  • Revision ID: james.westby@ubuntu.com-20020410131742-npf89tsaygdolprj
Tags: upstream-0.10.40
ImportĀ upstreamĀ versionĀ 0.10.40

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GNU gettext - internationalization aids
 
2
   Copyright (C) 1995-1998, 2000, 2001 Free Software Foundation, Inc.
 
3
 
 
4
   This file was written by Peter Miller <millerp@canb.auug.org.au>
 
5
 
 
6
   This program is free software; you can redistribute it and/or modify
 
7
   it under the terms of the GNU General Public License as published by
 
8
   the Free Software Foundation; either version 2, or (at your option)
 
9
   any later version.
 
10
 
 
11
   This program is distributed in the hope that it will be useful,
 
12
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
   GNU General Public License for more details.
 
15
 
 
16
   You should have received a copy of the GNU General Public License
 
17
   along with this program; if not, write to the Free SoftwareFoundation,
 
18
   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
19
 
 
20
#ifndef _WRITE_PO_H
 
21
#define _WRITE_PO_H
 
22
 
 
23
#include "message.h"
 
24
 
 
25
extern void message_page_width_set PARAMS ((size_t width));
 
26
 
 
27
extern void message_print_style_indent PARAMS ((void));
 
28
extern void message_print_style_uniforum PARAMS ((void));
 
29
extern void message_print_style_escape PARAMS ((int));
 
30
 
 
31
extern void message_list_print PARAMS ((message_list_ty *, const char *, int, int));
 
32
extern void message_list_sort_by_msgid PARAMS ((message_list_ty *));
 
33
extern void message_list_sort_by_filepos PARAMS ((message_list_ty *));
 
34
 
 
35
#endif /* _WRITE_PO_H */