~ubuntu-branches/ubuntu/lucid/9base/lucid

« back to all changes in this revision

Viewing changes to lib9/utf/lib9.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-08-20 17:34:06 UTC
  • mfrom: (6.2.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090820173406-xpwqa9ruyevvc0ut
Tags: 1:3-3
* Updating maintainer field.
* Updating vcs fields.
* Updating package to standards version 3.8.3.
* Updatin variables writing in rules to consistent style.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <string.h>
 
2
#include "utf.h"
 
3
 
 
4
#define nil ((void*)0)
 
5
 
 
6
#define uchar _fmtuchar
 
7
#define ushort _fmtushort
 
8
#define uint _fmtuint
 
9
#define ulong _fmtulong
 
10
#define vlong _fmtvlong
 
11
#define uvlong _fmtuvlong
 
12
 
 
13
typedef unsigned char           uchar;
 
14
typedef unsigned short          ushort;
 
15
typedef unsigned int            uint;
 
16
typedef unsigned long           ulong;
 
17