Skip to content

Commit 59fd9e5

Browse files
committed
Betty Style Code
1 parent 15400dd commit 59fd9e5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pointers_arrays_strings/main.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ char *_strcat(char *dest, char *src);
1919
void *_memcpy(void *dest, const void *src, size_t n);
2020
char *_strncat(char *dest, char *src, int n);
2121
void swap_int(int *a, int *b);
22-
char *_strchr(char *s, char c):
22+
char *_strchr(char *s, char c);
2323
int _strcmp(char *s1, char *s2);
2424
unsigned int _strspn(char *s, char *accept);
2525
void reverse_array(int *a, int n);
@@ -31,5 +31,4 @@ char *leet(char *str);
3131
void print_chessboard(char (*a)[8]);
3232
void print_diagsums(int *a, int size);
3333

34-
3534
#endif

0 commit comments

Comments
 (0)