comparison seobeo/s_web.c @ 82:1ded13720541

Added new logos.
author June Park <parkjune1995@gmail.com>
date Thu, 01 Jan 2026 12:45:22 -0800
parents 5710108c949e
children 19cccf6e866a
comparison
equal deleted inserted replaced
81:37fc1ec888b6 82:1ded13720541
29 ); 29 );
30 } 30 }
31 31
32 char* Seobeo_Web_LoadFile(const char *file_path, size_t *p_file_size) 32 char* Seobeo_Web_LoadFile(const char *file_path, size_t *p_file_size)
33 { 33 {
34 printf("file_path: %s\n", file_path);
35 char full_path[1024]; 34 char full_path[1024];
36 snprintf(full_path, sizeof(full_path), "%s/%s", g_folder_path, file_path); 35 snprintf(full_path, sizeof(full_path), "%s/%s", g_folder_path, file_path);
37 36
38 FILE *p_file = fopen(full_path, "rb"); 37 FILE *p_file = fopen(full_path, "rb");
39 if (!p_file) 38 if (!p_file)