Advertisement
davidtc14

Untitled

May 25th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. // Gets true if list is empty
  2. bool rankingList_empty(tRankingList* list) {
  3. // PR3 EX2
  4.  
  5. if (list->size == 0) {
  6. return true;
  7. }
  8. return false;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement