home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / LIBIMAGE / MISC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-11  |  372 b   |  24 lines

  1. /* 
  2.  * misc.h
  3.  * 
  4.  * Practical Algorithms for Image Analysis
  5.  * 
  6.  * Copyright (c) 1999 SOS Software
  7.  */
  8. #ifndef _MISC_H_
  9. #define    _MISC_H_
  10.  
  11. #include <stdio.h>
  12. #include <string.h>
  13. #if defined(WIN32)
  14. #include <ctype.h>
  15. #endif
  16.  
  17. #define IN_BUF_LEN 512
  18.  
  19. /* Function definitions for misc.c */
  20. extern char *last_bs (char *);
  21. extern int readlin (char *buf);
  22.  
  23. #endif /* _MISC_H_ */
  24.