]> git.sur5r.net Git - openldap/blob - contrib/tweb/dn.h
* configure.in: add tcl8.2 to list of tcl libs to search for, also added new MOD_TCL_LIB
[openldap] / contrib / tweb / dn.h
1 /*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
2 *                                                                          *
3 * dn.h.......                                                              *
4 *                                                                          *
5 * Function:..Header-Datei fuer TWEB-Software                               *
6 *                                                                          *
7 *                                                                          *
8 *                                                                          *
9 * Authors:...Dr. Kurt Spanier & Bernhard Winkler,                          *
10 *            Zentrum fuer Datenverarbeitung, Bereich Entwicklung           *
11 *            neuer Dienste, Universitaet Tuebingen, GERMANY                *
12 *                                                                          *
13 *                                       ZZZZZ  DDD    V   V                *
14 *            Creation date:                Z   D  D   V   V                *
15 *            April 24 1996                Z    D   D   V V                 *
16 *            Last modification:          Z     D  D    V V                 *
17 *            November 21 1996           ZZZZ   DDD      V                  *
18 *                                                                          *
19 _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
20
21 /*
22  * $Id: dn.h,v 1.6 1999/09/10 15:01:16 zrnsk01 Exp $
23  *
24  */
25
26 #ifndef _DN_
27 #define _DN_
28
29 #define DNSEPARATOR(c)  (c == ',' || c == ';')
30 #define SEPARATOR(c)    (c == ',' || c == ';' || c == '+')
31 #define SPACE(c)        (c == ' ' || c == '\n')
32 #define NEEDSESCAPE(c)  (c == '\\' || c == '"')
33 #define B4TYPE          0
34 #define INTYPE          1
35 #define B4EQUAL         2
36 #define B4VALUE         3
37 #define INVALUE         4
38 #define INQUOTEDVALUE   5
39 #define B4SEPARATOR     6
40
41 #include "dn_exp.h"
42
43 #endif /* _DN_ */