scan.h
author tomas@localhost
Thu, 01 Nov 2007 14:46:11 +0100
changeset 0 c045670f36e9
permissions -rw-r--r--
Imported queue-fix-1.4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     1
#ifndef SCAN_H
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     2
#define SCAN_H
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     3
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     4
extern unsigned int scan_uint();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     5
extern unsigned int scan_xint();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     6
extern unsigned int scan_nbbint();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     7
extern unsigned int scan_ushort();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     8
extern unsigned int scan_xshort();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     9
extern unsigned int scan_nbbshort();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    10
extern unsigned int scan_ulong();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    11
extern unsigned int scan_xlong();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    12
extern unsigned int scan_nbblong();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    13
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    14
extern unsigned int scan_plusminus();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    15
extern unsigned int scan_0x();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    16
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    17
extern unsigned int scan_whitenskip();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    18
extern unsigned int scan_nonwhitenskip();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    19
extern unsigned int scan_charsetnskip();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    20
extern unsigned int scan_noncharsetnskip();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    21
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    22
extern unsigned int scan_strncmp();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    23
extern unsigned int scan_memcmp();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    24
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    25
extern unsigned int scan_long();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    26
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    27
#endif