my_strdup / my_strndup size_t -> int
This commit is contained in:
parent
d5c5a5368f
commit
1f91b8ea35
2 changed files with 4 additions and 4 deletions
|
@ -30,7 +30,7 @@ void print_indent(int level);
|
|||
|
||||
char *my_strdup(const char *s);
|
||||
|
||||
char *my_strndup(const char *s, size_t n);
|
||||
char *my_strndup(const char *s, int n);
|
||||
|
||||
|
||||
#endif /* !STR_H */
|
||||
|
|
|
@ -183,7 +183,7 @@ void print_indent(int level) {
|
|||
|
||||
char *my_strdup(const char *s) {
|
||||
char *out;
|
||||
size_t count = 0;
|
||||
int count = 0;
|
||||
while( s[count] )
|
||||
++count;
|
||||
++count;
|
||||
|
@ -194,9 +194,9 @@ char *my_strdup(const char *s) {
|
|||
return out;
|
||||
}
|
||||
|
||||
char *my_strndup(const char *s, size_t n) {
|
||||
char *my_strndup(const char *s, int n) {
|
||||
char *out;
|
||||
size_t count = 0;
|
||||
int count = 0;
|
||||
while( count < n && s[count] )
|
||||
++count;
|
||||
++count;
|
||||
|
|
Loading…
Reference in a new issue