Merge pull request #3 from CindyLinz/master

my_strdup / my_strndup   size_t -> int
This commit is contained in:
Pedro 2014-05-17 05:37:33 +08:00
commit c182c4efaa
2 changed files with 4 additions and 4 deletions

View file

@ -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 */

View file

@ -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;