Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

print.h (254B)


      1 #include <stdint.h>
      2 
      3 #pragma once
      4 #ifndef PRINT_H
      5 #define PRINT_H
      6 
      7 void k_print(char *mode, const char *str);
      8 void k_delete(char *mode);
      9 void k_warn(char *mode, const char *str);
     10 void k_info(char *mode, const char *str);
     11 void k_init(char *mode);
     12 
     13 #endif