mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2025-02-11 03:55:43 +00:00
Update
This commit is contained in:
parent
3b4bbdde80
commit
8a0e087851
@ -149,7 +149,7 @@ std::string MDFN_EvalFIP(const std::string &dir_path, const std::string &rel_pat
|
||||
}
|
||||
|
||||
// Remove whitespace from beginning of string
|
||||
void MDFN_ltrim(std::string &string)
|
||||
static void MDFN_ltrim(std::string &string)
|
||||
{
|
||||
size_t len = string.length();
|
||||
size_t di, si;
|
||||
@ -176,7 +176,7 @@ void MDFN_ltrim(std::string &string)
|
||||
}
|
||||
|
||||
// Remove whitespace from end of string
|
||||
void MDFN_rtrim(std::string &string)
|
||||
static void MDFN_rtrim(std::string &string)
|
||||
{
|
||||
size_t len = string.length();
|
||||
|
||||
|
@ -3,17 +3,11 @@
|
||||
|
||||
#include <string>
|
||||
|
||||
extern uint32 MDFN_RoundUpPow2(uint32);
|
||||
|
||||
void GetFileBase(const char *f);
|
||||
|
||||
// File-inclusion for-read-only path, for PSF and CUE/TOC sheet usage.
|
||||
bool MDFN_IsFIROPSafe(const std::string &path);
|
||||
|
||||
std::string MDFN_MakeFName(int type, int id1, const char *cd1);
|
||||
|
||||
void MDFN_ltrim(std::string &string);
|
||||
void MDFN_rtrim(std::string &string);
|
||||
void MDFN_trim(std::string &string);
|
||||
|
||||
typedef enum
|
||||
|
Loading…
x
Reference in New Issue
Block a user