functions.h 147 B

123456789
  1. #ifndef FUNCTIONS_H
  2. #define FUNCTIONS_H
  3. #include "custom_types.h"
  4. SP_font SP_load_font(char *filename);
  5. void SP_free_font(SP_font* font);
  6. #endif