config root man

Current Path : /usr/local/include/namazu/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/local/include/namazu/parser.h

#ifndef _PARSER_H
#define _PARSER_H

#include "libnamazu.h" /* for NmzResult type */

/* definitions of operator */
#define AND_STRING "&"
#define OR_STRING  "|"
#define NOT_STRING "!"
#define LP_STRING  "("
#define RP_STRING  ")"

/* also acceptable as word since v1.1.1 */
#define AND_STRING_ALT "and"
#define OR_STRING_ALT  "or"
#define NOT_STRING_ALT "not"

#define AND_OP 1
#define NOT_OP 2

extern void nmz_init_parser(void);
extern NmzResult nmz_expr(void);
extern int nmz_is_query_op(const char *);

#endif /* _PARSER_H */

Man Man