~ubuntu-branches/ubuntu/vivid/fribidi/vivid

« back to all changes in this revision

Viewing changes to charset/fribidi-char-sets-iso8859-6.h

  • Committer: Bazaar Package Importer
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2010-02-04 13:15:40 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100204131540-8vfnrbusid3nl3ut
Tags: 0.19.2-1
* New upstream release. (Closes: #462612)
* Switch to 3.0 (quilt) source format.
* Added LGPL2 copyright notice in debian/copyright.
* Removed fribidi-config.1 since fribidi-config is removed from upstream.
* Added THANKS file to libfribidi0.docs.
* Added debian/tmp/usr/share/man/man3/*.3 to libfribid-dev.manpages.
* debian/rules:
  + Simplify rules file.
  + remove empty manpages.
* debian/compat: Bump to 7.
* debian/control:
  + Bump debhelper version to >= 7.0.50~ in Build-Depends.
  + Bump Standards-Version to 3.8.4
  + Enhanced extended description for libfribidi0 and libfribidi-dev.
  + Added ${misc:Depends} to Depends fields.
  + Added myself to uploaders.
  + Added Vcs-* fields.
* debian/fribidi.1: Fix a typo.
* Added manpages.diff patch to fix a couple of hyphen issues in
  fribidi_remove_bidi_marks.3
* Added typos.diff patch to fix typo in fribidi help information.
* Use dh_install instead of dh_movefiles: Rename debian/*.files to 
  debian/*.install

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* FriBidi
 
2
 * fribidi-char-sets-iso8859-6.h - ISO8859-6 character set conversion routines
 
3
 *
 
4
 * $Id: fribidi-char-sets-iso8859-6.h,v 1.2 2004/06/09 14:59:21 behdad Exp $
 
5
 * $Author: behdad $
 
6
 * $Date: 2004/06/09 14:59:21 $
 
7
 * $Revision: 1.2 $
 
8
 * $Source: /cvs/fribidi/fribidi2/charset/fribidi-char-sets-iso8859-6.h,v $
 
9
 *
 
10
 * Authors:
 
11
 *   Behdad Esfahbod, 2001, 2002, 2004
 
12
 *   Dov Grobgeld, 1999, 2000
 
13
 *
 
14
 * Copyright (C) 2004 Sharif FarsiWeb, Inc
 
15
 * Copyright (C) 2001,2002 Behdad Esfahbod
 
16
 * Copyright (C) 1999,2000 Dov Grobgeld
 
17
 * 
 
18
 * This library is free software; you can redistribute it and/or
 
19
 * modify it under the terms of the GNU Lesser General Public
 
20
 * License as published by the Free Software Foundation; either
 
21
 * version 2.1 of the License, or (at your option) any later version.
 
22
 * 
 
23
 * This library is distributed in the hope that it will be useful,
 
24
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
25
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
26
 * Lesser General Public License for more details.
 
27
 * 
 
28
 * You should have received a copy of the GNU Lesser General Public License
 
29
 * along with this library, in a file named COPYING; if not, write to the
 
30
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 
31
 * Boston, MA 02111-1307, USA
 
32
 * 
 
33
 * For licensing issues, contact <license@farsiweb.info>.
 
34
 */
 
35
 
 
36
#ifndef _FRIBIDI_CHAR_SETS_ISO8859_6_H
 
37
#define _FRIBIDI_CHAR_SETS_ISO8859_6_H
 
38
 
 
39
#include "fribidi-common.h"
 
40
 
 
41
#include "fribidi-types.h"
 
42
 
 
43
#include "fribidi-begindecls.h"
 
44
 
 
45
#define fribidi_char_set_name_iso8859_6 "ISO8859-6"
 
46
#define fribidi_char_set_title_iso8859_6 "ISO8859-6 (Arabic)"
 
47
#define fribidi_char_set_desc_iso8859_6 NULL
 
48
 
 
49
#define fribidi_iso8859_6_to_unicode_c FRIBIDI_NAMESPACE(iso8859_6_to_unicode_c)
 
50
FriBidiChar fribidi_iso8859_6_to_unicode_c (
 
51
  char ch
 
52
);
 
53
 
 
54
#define fribidi_unicode_to_iso8859_6_c FRIBIDI_NAMESPACE(unicode_to_iso8859_6_c)
 
55
char fribidi_unicode_to_iso8859_6_c (
 
56
  FriBidiChar uch
 
57
);
 
58
 
 
59
#include "fribidi-enddecls.h"
 
60
 
 
61
#endif /* !_FRIBIDI_CHAR_SETS_ISO8859_6_H */
 
62
/* Editor directions:
 
63
 * vim:textwidth=78:tabstop=8:shiftwidth=2:autoindent:cindent
 
64
 */