Advertisement
sp1d3o

Sort_code.h

Feb 25th, 2022
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #ifndef LINKED_LIST_BUBBLESORT_SORT_CODE_H
  2. #define LINKED_LIST_BUBBLESORT_SORT_CODE_H
  3.  
  4. #include <stdio.h>
  5. #include "List_library.h"
  6.  
  7. void swap(node_t *xp, node_t *yp);
  8. void bubble_sort(list_t *list);
  9.  
  10. #endif //LINKED_LIST_BUBBLESORT_SORT_CODE_H
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement