Преглед на файлове

Review comment

pull/951/head
raysan5 преди 5 години
родител
ревизия
20fa362700
променени са 2 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. +2
    -2
      src/core.c
  2. +1
    -1
      src/raylib.h

+ 2
- 2
src/core.c Целия файл

@ -1811,10 +1811,10 @@ const char *GetFileName(const char *filePath)
return fileName + 1;
}
// Get filename string without extension (memory should be freed)
// Get filename string without extension (uses static string)
const char *GetFileNameWithoutExt(const char *filePath)
{
#define MAX_FILENAMEWITHOUTEXT_LENGTH 64
#define MAX_FILENAMEWITHOUTEXT_LENGTH 128
static char fileName[MAX_FILENAMEWITHOUTEXT_LENGTH];
memset(fileName, 0, MAX_FILENAMEWITHOUTEXT_LENGTH);

+ 1
- 1
src/raylib.h Целия файл

@ -939,7 +939,7 @@ RLAPI bool IsFileExtension(const char *fileName, const char *ext);// Check file
RLAPI bool DirectoryExists(const char *dirPath); // Check if a directory path exists
RLAPI const char *GetExtension(const char *fileName); // Get pointer to extension for a filename string
RLAPI const char *GetFileName(const char *filePath); // Get pointer to filename for a path string
RLAPI const char *GetFileNameWithoutExt(const char *filePath); // Get filename string without extension (memory should be freed)
RLAPI const char *GetFileNameWithoutExt(const char *filePath); // Get filename string without extension (uses static string)
RLAPI const char *GetDirectoryPath(const char *filePath); // Get full path for a given fileName with path (uses static string)
RLAPI const char *GetPrevDirectoryPath(const char *dirPath); // Get previous directory path for a given path (uses static string)
RLAPI const char *GetWorkingDirectory(void); // Get current working directory (uses static string)

Зареждане…
Отказ
Запис