~ubuntu-branches/ubuntu/karmic/pypy/karmic

« back to all changes in this revision

Viewing changes to pypy/translator/c/src/unichar.h

  • Committer: Bazaar Package Importer
  • Author(s): Alexandre Fayolle
  • Date: 2007-04-13 09:33:09 UTC
  • Revision ID: james.westby@ubuntu.com-20070413093309-yoojh4jcoocu2krz
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/************************************************************/
 
2
/***  C header subsection: operations between chars       ***/
 
3
 
 
4
/*** unary operations ***/
 
5
 
 
6
/***  binary operations ***/
 
7
 
 
8
/* typedef unsigned pypy_unichar; */
 
9
#define OP_UNICHAR_EQ(x,y,r)     r = ((x) == (y))
 
10
#define OP_UNICHAR_NE(x,y,r)     r = ((x) != (y))
 
11