home *** CD-ROM | disk | FTP | other *** search
/ ftptest.leeds.ac.uk / 2015.02.ftptest.leeds.ac.uk.tar / ftptest.leeds.ac.uk / bionet / CAE-GROUP / SCL-WIN3x / SCL.EXE / STR.H < prev    next >
C/C++ Source or Header  |  1994-08-06  |  1KB  |  47 lines

  1.  
  2. #ifndef STR_H
  3. #define STR_H
  4.  
  5. /*
  6. * NIST Utils Class Library
  7. * clutils/Str.h
  8. * February, 1994
  9. * K. C. Morris
  10. * David Sauder
  11.  
  12. * Development of this software was funded by the United States Government,
  13. * and is not subject to copyright.
  14. */
  15.  
  16. /* $Id: Str.h,v 2.0.1.1 1994/04/05 16:43:44 sauderd Exp $  */ 
  17.  
  18.  
  19. #include <ctype.h>
  20.  
  21. //#include <std.h> // not found in CenterLine C++
  22. // the two includes stdio.h and stdlib.h below are replacing std.h since 
  23. // CenterLine doesn't have std.h
  24.  
  25. #include <stdio.h> // added to have the definition for BUFSIZE
  26. #include <stdlib.h> 
  27. #include <string.h>
  28. #include <scl_string.h>
  29. #include <errordesc.h>
  30.  
  31. char ToLower (const char c);
  32. char ToUpper  (const char c);
  33. const char * StrToLower (const char * word, SCLstring &s);
  34. const char * StrToUpper (const char * word, SCLstring &s);
  35. const char * StrToConstant (const char * word, SCLstring &s);
  36. const char * PrettyTmpName (const char * oldname);
  37. char * PrettyNewName (const char * oldname);
  38. char * EntityClassName ( char * oldname);
  39.  
  40. extern Severity CheckRemainingInput
  41.    (istream &in, ErrorDescriptor *err, 
  42.     const char *typeName, // used in error message
  43.     const char *tokenList); // e.g. ",)"
  44.  
  45.  
  46. #endif 
  47.