write with io

This commit is contained in:
herbglitch 2024-01-23 21:16:43 -07:00
parent af9a1f1040
commit 7dc58b60a6
2 changed files with 29 additions and 0 deletions

View file

@ -17,6 +17,14 @@ extern "C" {
*/
void ARC_IO_FileToStr(ARC_String *path, ARC_String **data);
/**
* @brief write string to file
*
* @param path a string to path of target file
* @param data data to be written
*/
void ARC_IO_WriteStrToFile(ARC_String *path, ARC_String *data);
#ifdef __cplusplus
}
#endif