home *** CD-ROM | disk | FTP | other *** search
- /*
- * c.h
- *
- * Author: Tomi Ollila <too@cs.hut.fi>
- *
- * Copyright (c) 1993 AmiTCP/IP Group, <amitcp-group@hut.fi>
- * All rights reserved.
- *
- * Created: Wed Sep 15 14:20:40 1993 too
- * Last modified: Sat Oct 16 16:53:44 1993 too
- *
- * $Id: c.h,v 1.1 1993/10/24 12:50:39 too Exp too $
- *
- * HISTORY
- * $Log: c.h,v $
- * Revision 1.1 1993/10/24 12:50:39 too
- * Initial revision
- *
- */
-
- #ifndef _C_H_
- #define _C_H_
-
- /*
- * prototypes
- */
- void bzero(char * mem, int len);
- #if 0
- int strncasecmp(char *a, char * b, int n);
- #endif
- int atoi(char * num);
-
- #define isdigit(c) ( (c) >= '0' && (c) <= '9')
-
- #endif /* _C_H_ */
-