home *** CD-ROM | disk | FTP | other *** search
- #ifndef STR_LIB_H
- #define STR_LIB_H
-
- #include <windows.h>
-
- typedef LPSTR str_type;
-
- str_type my_itoa(int value, str_type str, int radix);
-
- int my_atoi(str_type str);
-
- str_type strcpy_2n(str_type dest, str_type src);
-
- str_type strcat_2n(str_type dest, str_type src);
-
- bool b_strcmpi(str_type s1, str_type s2);
-
- str_type time_string(int ms, str_type dest);
-
- str_type Proper_Filename(str_type s);
-
- int CDTrack_number(str_type current, str_type next, str_type src);
-
- #endif
-
-