home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 Secrets / Secrets2.iso / Audio / WAV / MaplayP / _SETUP.1 / str_lib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-06-20  |  496 b   |  26 lines

  1. #ifndef STR_LIB_H
  2. #define STR_LIB_H
  3.  
  4. #include <windows.h>
  5.  
  6. typedef LPSTR str_type;
  7.  
  8. str_type my_itoa(int value, str_type str, int radix);
  9.  
  10. int my_atoi(str_type str);
  11.  
  12. str_type strcpy_2n(str_type dest, str_type src);
  13.  
  14. str_type strcat_2n(str_type dest, str_type src);
  15.  
  16. bool b_strcmpi(str_type s1, str_type s2);
  17.  
  18. str_type time_string(int ms, str_type dest);
  19.  
  20. str_type Proper_Filename(str_type s);
  21.  
  22. int CDTrack_number(str_type current, str_type next, str_type src);
  23.  
  24. #endif
  25.  
  26.