~ubuntu-branches/ubuntu/hardy/php5/hardy-updates

« back to all changes in this revision

Viewing changes to ext/mbstring/libmbfl/filters/mbfilter_iso8859_14.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-10-09 03:14:32 UTC
  • Revision ID: james.westby@ubuntu.com-20051009031432-kspik3lobxstafv9
Tags: upstream-5.0.5
ImportĀ upstreamĀ versionĀ 5.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * COPYRIGHT NOTICE
 
3
 *
 
4
 * This file is a portion of "streamable kanji code filter and converter"
 
5
 * library, which is distributed under GNU Lesser General Public License
 
6
 * version 2.1.  
 
7
 * 
 
8
 * The source code included in this files was separated from mbfilter.c
 
9
 * by Moriyoshi Koizumi <moriyoshi@php.net> on 4 Dec 2002.
 
10
 *
 
11
 */
 
12
 
 
13
#ifndef MBFL_MBFILTER_ISO8859_14_H
 
14
#define MBFL_MBFILTER_ISO8859_14_H
 
15
 
 
16
#include "mbfilter.h"
 
17
 
 
18
extern const mbfl_encoding mbfl_encoding_8859_14;
 
19
extern const struct mbfl_identify_vtbl vtbl_identify_8859_14;
 
20
extern const struct mbfl_convert_vtbl vtbl_8859_14_wchar;
 
21
extern const struct mbfl_convert_vtbl vtbl_wchar_8859_14;
 
22
 
 
23
int mbfl_filt_conv_8859_14_wchar(int c, mbfl_convert_filter *filter);
 
24
int mbfl_filt_conv_wchar_8859_14(int c, mbfl_convert_filter *filter);
 
25
 
 
26
#endif /* MBFL_MBFILTER_ISO8859_14_H */