str.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 STR_H
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     2
#define STR_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 str_copy();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     5
extern int str_diff();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     6
extern int str_diffn();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     7
extern unsigned int str_len();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     8
extern unsigned int str_chr();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     9
extern unsigned int str_rchr();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    10
extern int str_start();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    11
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    12
#define str_equal(s,t) (!str_diff((s),(t)))
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    13
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    14
#endif