File: numeral.h

package info (click to toggle)
postgresql-numeral 1.3-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 196 kB
  • sloc: ansic: 370; yacc: 242; sql: 194; lex: 169; makefile: 37; sh: 19
file content (16 lines) | stat: -rw-r--r-- 366 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* type defs */

typedef long long Numeral;
typedef long long Zahl;
typedef long long Roman;

/* prototypes */

const char *numeral_cstring (Numeral numeral);
int numeral_parse (char *s, Numeral *numeral);

const char *zahl_cstring (Zahl zahl);
int zahl_parse (char *s, Zahl *zahl);

const char *roman_cstring (Roman roman);
int roman_parse (char *s, Roman *roman);