/* * Copyright (C) 1995-1997 Christopher D. Granz * * This header may not be removed. * * Refer to the file "License" included in this package for further * information and before using any of the following. */ #ifndef __CLIENT_H__ #define __CLIENT_H__ #include "sapphire.h" /* * Prototypes */ /* * main.c */ int main ( int iArgC, char *pArgV[], char *pEnv[] ); void print_text ( char *pText ); bool is_number ( char *pStr ); /* * error.c */ void fatal ( char *pFormat, ... ); #endif /* __CLIENT_H__ */ /* * End of client.h */