sc68fordevelopers  2.2.1
string68.h
Go to the documentation of this file.
1 
14 #ifndef _STRING_68_H_
15 #define _STRING_68_H_
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
37 int SC68strcmp(const char *a, const char *b);
38 
54 char * SC68strcat(char * a, const char * b, int l);
55 
67 char * SC68strdup(const char * s);
68 
83 char * SC68strcatdup(const char * a, const char * b);
84 
104 char * SC68time_str(char * buffer, int track_num, int seconds);
105 
122 char * SC68long_time_str(char * buffer, int time);
123 
124 #ifdef __cplusplus
125 }
126 #endif
127 
128 #endif /* #ifndef _STRING_68_H_ */
int SC68strcmp(const char *a, const char *b)
Compare two string (case insensitive).
char * SC68strdup(const char *s)
Duplicate a string.
char * SC68strcatdup(const char *a, const char *b)
Concat two strings in a duplicate buffer.
char * SC68long_time_str(char *buffer, int time)
Convert time (in second) to string.
char * SC68strcat(char *a, const char *b, int l)
Concatenate two strings.
char * SC68time_str(char *buffer, int track_num, int seconds)
Make a track and time infornmation string.