mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
9 lines
384 B
C
9 lines
384 B
C
#pragma once
|
|
|
|
bool string_is_empty(const char* str);
|
|
void string_copy(char* dst, const char* src, size_t size);
|
|
|
|
void string_get_file_name(char* out, const char* file, u32 size);
|
|
void string_escape_file_name(char* out, const char* file, size_t size);
|
|
void string_get_path_file(char* out, const char* path, u32 size);
|
|
void string_get_parent_path(char* out, const char* path, u32 size); |