raylib/src
Ray c264c86ee0 ADDED: Some useful functions for Files and Text management
// File management functions
 - int FileRename(const char *fileName, const char *fileRename); // Rename file (if exists)
 - iint FileRemove(const char *fileName);                         // Remove file (if exists)
 - iint FileCopy(const char *srcPath, const char *dstPath);       // Copy file from one path to another, dstPath created if it doesn't exist
 - iint FileMove(const char *srcPath, const char *dstPath);       // Move file from one directory to another, dstPath created if it doesn't exist
 - int FileTextReplace(const char *fileName, const char *search, const char *replacement); // Replace text in an existing file
 - iint FileTextFindIndex(const char *fileName, const char *search); // Find text in existing file

// Text management functions
 - const char *TextRemoveSpaces(const char *text);                                       // Remove text spaces, concat words
 - char *GetTextBetween(const char *text, const char *begin, const char *end);           // Get text between two strings
 - char *TextReplace(const char *text, const char *search, const char *replacement);     // Replace text string (WARNING: memory must be freed!)
 - char *TextReplaceBetween(const char *text, const char *begin, const char *end, const char *replacement); // Replace text between two specific strings (WARNING: memory must be freed!)
2025-09-18 15:34:09 +02:00
..
external REVIEWED: Code sections description for consistency 2025-09-02 12:34:04 +02:00
platforms REVIEWED: Platform code formatting and organization 2025-09-18 15:28:03 +02:00
CMakeLists.txt [build][cmake] Review web compilation system (#5181) 2025-09-14 10:05:07 +02:00
config.h Update config.h 2025-09-03 18:25:27 +02:00
Makefile [rcore][win32] Adding native win32 backend (#4869) 2025-08-31 12:13:21 +02:00
minshell.html REVIEWED: Code/Web-Makefile formatting 2025-01-12 16:19:10 +01:00
raudio.c Update raudio.c 2025-09-04 10:33:26 +02:00
raylib.dll.rc Update year to 2025 2025-01-01 00:02:52 +01:00
raylib.dll.rc.data Update year to 2025 2025-01-01 00:02:52 +01:00
raylib.h ADDED: Some useful functions for Files and Text management 2025-09-18 15:34:09 +02:00
raylib.ico Update raylib.ico 2024-11-14 16:40:04 +01:00
raylib.rc Update year to 2025 2025-01-01 00:02:52 +01:00
raylib.rc.data Update year to 2025 2025-01-01 00:02:52 +01:00
raymath.h removed unneeded comma 2025-08-07 19:55:46 +03:00
rcamera.h REVIEWED: Code sections description for consistency 2025-09-02 12:34:04 +02:00
rcore.c ADDED: Some useful functions for Files and Text management 2025-09-18 15:34:09 +02:00
rgestures.h REVIEWED: Code sections description for consistency 2025-09-02 12:34:04 +02:00
rglfw.c Update year to 2025 2025-01-01 00:02:52 +01:00
rlgl.h Update rlgl.h 2025-09-18 15:29:13 +02:00
rmodels.c Remove trailing spaces 2025-09-14 18:07:58 +02:00
rshapes.c REVIEWED: Code sections definition 2025-09-02 12:10:40 +02:00
rtext.c ADDED: Some useful functions for Files and Text management 2025-09-18 15:34:09 +02:00
rtextures.c Use the render size not the screen size for screenshots so we use the actual framebuffer size. (#5192) 2025-09-18 00:01:24 +02:00
shell.html [build][cmake] Review web compilation system (#5181) 2025-09-14 10:05:07 +02:00
utils.c REVIEWED: Prioritize calloc() calls than malloc() on some cases 2025-09-10 21:03:06 +02:00
utils.h Update year to 2025 2025-01-01 00:02:52 +01:00