~ubuntu-branches/ubuntu/saucy/fdclone/saucy-proposed

« back to all changes in this revision

Viewing changes to roman.c

  • Committer: Package Import Robot
  • Author(s): Elías Alejandro Año Mendoza
  • Date: 2013-03-31 20:19:19 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20130331201919-vd2f75ssuh1sdctw
Tags: 3.01-1
* New upstream release
* Updated Standard-Version to 3.9.4
* Bump debhelper to 9
* debian/rules enabled hardening build flags

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
#include "roman.h"
14
14
 
15
15
#define R_MAXVOWEL              5
16
 
#define DEFRM(s,c)              {s, strsize(s), \
 
16
#define DEFRM(s, c)             {s, strsize(s), \
17
17
                                {((c) >> 8) & 0xff, (c) & 0xff}}
18
 
#define DEFRM2(s,c1,c2)         {s, strsize(s), {(c1), (c2)}}
 
18
#define DEFRM2(s, c1, c2)       {s, strsize(s), {(c1), (c2)}}
19
19
 
20
20
typedef struct _voweltable {
21
21
        int key;