~ubuntu-branches/ubuntu/saucy/kakasi/saucy

« back to all changes in this revision

Viewing changes to src/conv-util.h

  • Committer: Bazaar Package Importer
  • Author(s): Keita Maehara
  • Date: 2001-12-25 23:18:48 UTC
  • Revision ID: james.westby@ubuntu.com-20011225231848-oiu2kbbhoq80w774
Tags: upstream-2.3.4
ImportĀ upstreamĀ versionĀ 2.3.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * KAKASI (Kanji Kana Simple inversion program)
 
3
 * $Id: conv-util.h,v 1.2 2000/12/29 18:39:11 rug Exp $
 
4
 * Copyright (C) 1994
 
5
 * Hironobu Takahashi (takahasi@tiny.or.jp)
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either versions 2, or (at your option)
 
10
 * any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with KAKASI, see the file COPYING.  If not, write to the Free
 
19
 * Software Foundation Inc., 59 Temple Place - Suite 330, Boston, MA
 
20
 * 02111-1307, USA.
 
21
 */
 
22
 
 
23
#ifndef _CONV_UTIL_H
 
24
#define _CONV_UTIL_H
 
25
 
 
26
#ifndef PARAMS
 
27
# if __STDC__ || defined __cplusplus
 
28
# define PARAMS(args) args
 
29
# else
 
30
# define PARAMS(args) ()
 
31
# endif
 
32
#endif
 
33
 
 
34
extern int isallkana PARAMS((unsigned char *str));
 
35
extern int isallzenkaku PARAMS((unsigned char *str));
 
36
extern int includekanji PARAMS((unsigned char *str));
 
37
 
 
38
#endif /* _CONV_UTIL_H */