blob: a847c1ddc7cad92dd3b309637678c172298bc751 (
plain)
1
2
3
4
5
6
7
|
#include <cynic.h>
int main(void) {
un_init(UN_KB(4));
// cyn_log_write(CYN_LOG_INFO, UN_STR("Size of it is: %l"), sizeof(File_Handle));
File_Handle file = cyn_file_open(UN_STR("Ligma.png"));
}
|