aocc23

Advent of Code 2023
git clone git://www.tkruger.se/aocc23.git
Log | Files | Refs | README

test_reading.h (252B)


      1 #ifndef TEST_READING_H
      2 #define TEST_READING_H
      3 
      4 #include "../reading.h"
      5 #include <CUnit/Basic.h>
      6 
      7 void test_reading_readall(void);
      8 void test_reading_readlines(void);
      9 void test_reading_read_next_u64(void);
     10 void test_reading_sread_next_u64(void);
     11 
     12 #endif