Skip to content
Open
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
6 changes: 3 additions & 3 deletions src/c.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ int main (int argc, const char *argv[]) {

int args;
args = argc;

//show the conditions of the arguments
if (uk > 2) {
printUsage();
return EXIT_FAILURE;
Expand Down Expand Up @@ -147,9 +147,9 @@ void makeDir(const char *path) {
free(s);
}

// Prints all the files in the current directory
// Print all the files in the current directory
void printFiles(const char *path) {
// Print the current directories comment
// Prints the comment in the current directory
printCurrentComment(path);
printf("\n");

Expand Down