You've already forked FBI-NH
mirror of
https://github.com/nh-server/FBI-NH.git
synced 2026-04-30 11:25:22 -07: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); |