Skip to content
This repository was archived by the owner on Nov 16, 2021. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _builtins.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ int _builtins(char **args)

while (builts[i])
{
if (_strcmp(args[0], builts[i]) == 0)
if (strcmp(args[0], builts[i]) == 0)
break;
i++;
}
Expand Down
2 changes: 1 addition & 1 deletion _strcpy.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
**/
char *_strcpy(char *dest, char *src)
{
char buff[1025];
char buff[1024];
int i = 0, j, pos = 0;

while (*(src + i) != '\0')
Expand Down