Blame exp_prog.h

Packit a69f91
/* exp_prog.h - private symbols common to both expect program and library
Packit a69f91
Packit a69f91
Written by: Don Libes, libes@cme.nist.gov, NIST, 12/3/90
Packit a69f91
Packit a69f91
Design and implementation of this program was paid for by U.S. tax
Packit a69f91
dollars.  Therefore it is public domain.  However, the author and NIST
Packit a69f91
would appreciate credit if this program or parts of it are used.
Packit a69f91
*/
Packit a69f91
Packit a69f91
#ifndef _EXPECT_PROG_H
Packit a69f91
#define _EXPECT_PROG_H
Packit a69f91
Packit a69f91
#include "expect_tcl.h"
Packit a69f91
#include "exp_int.h"
Packit a69f91
Packit a69f91
/* yes, I have a weak mind */
Packit a69f91
#define streq(x,y)	(0 == strcmp((x),(y)))
Packit a69f91
Packit a69f91
/* Constant strings for NewStringObj */
Packit a69f91
#define LITERAL(s) Tcl_NewStringObj ((s), sizeof(s)-1)
Packit a69f91
Packit a69f91
#endif /* _EXPECT_PROG_H */