Skip to content

Commit 7b4ce57

Browse files
committed
1-linear.c
1 parent f6187dd commit 7b4ce57

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

0x1E-search_algorithms/search_algos.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
*/
1919
typedef struct listint_s
2020
{
21-
int n;
22-
size_t index;
23-
struct listint_s *next;
21+
int n;
22+
size_t index;
23+
struct listint_s *next;
2424
} listint_t;
2525

2626

@@ -38,10 +38,10 @@ typedef struct listint_s
3838
*/
3939
typedef struct skiplist_s
4040
{
41-
int n;
42-
size_t index;
43-
struct skiplist_s *next;
44-
struct skiplist_s *express;
41+
int n;
42+
size_t index;
43+
struct skiplist_s *next;
44+
struct skiplist_s *express;
4545
} skiplist_t;
4646

4747

0 commit comments

Comments
 (0)