harec

[hare] Hare compiler, written in C11 for POSIX OSs
Log | Files | Refs | README | LICENSE

typedef.h (190B)


      1 #ifndef HARE_TYPEDEF_H
      2 #define HARE_TYPEDEF_H
      3 #include <stdio.h>
      4 
      5 struct unit;
      6 
      7 bool emit_type(const struct type *type, FILE *out);
      8 void emit_typedefs(struct unit *unit, FILE *out);
      9 
     10 #endif