aocc23

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

common.h (333B)


      1 #ifndef COMMON_H_
      2 #define COMMON_H_
      3 
      4 #include <assert.h>
      5 #include <gmp.h>
      6 #include <stdint.h>
      7 #include <stdio.h>
      8 #include <stdlib.h>
      9 
     10 #include <reading.h>
     11 #include <stack_u64.h>
     12 
     13 #define ZZZ 17575
     14 #define AAA 0
     15 
     16 uint64_t chrs_to_node(char *s);
     17 void read_graph(uint64_t *lefts, uint64_t *rights, char **lines, size_t nlines);
     18 
     19 #endif