28 lines
802 B
C
28 lines
802 B
C
/*
|
|
* $XConsortium: DtTermSyntax.h /main/3 1995/10/31 11:18:08 rswiston $";
|
|
*/
|
|
|
|
/* *
|
|
* (c) Copyright 1993, 1994 Hewlett-Packard Company *
|
|
* (c) Copyright 1993, 1994 International Business Machines Corp. *
|
|
* (c) Copyright 1993, 1994 Sun Microsystems, Inc. *
|
|
* (c) Copyright 1993, 1994 Novell, Inc. *
|
|
*/
|
|
|
|
#ifndef _DtTermSyntax_h
|
|
#define _DtTermSyntax_h
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
void Syntax(char *programName, char *badOption);
|
|
void Help(char *programName);
|
|
|
|
#ifdef __cplusplus
|
|
} /* close scope of 'extern "C"'... */
|
|
#endif /* __cplusplus */
|
|
|
|
/* DON'T ADD ANYTHING AFTER THIS #endif... */
|
|
#endif /* _DtTermSyntax_h */
|