Skip to content

Commit 3fd916d

Browse files
committed
add some cosmetic fixes
1 parent dadd57d commit 3fd916d

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

src/comparators.c

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,3 @@
44
int compare_asc(const char *a, const char *b) { return strcmp(a, b); }
55

66
int compare_des(const char *a, const char *b) { return strcmp(b, a); }
7-
8-
void swap(char **a, char **b) {
9-
char *temp = *a;
10-
*a = *b;
11-
*b = temp;
12-
}

0 commit comments

Comments
 (0)