mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-24 21:57:44 +00:00
8 lines
No EOL
218 B
C++
8 lines
No EOL
218 B
C++
#include "bparse.h"
|
|
|
|
std::string xivps3::utils::bparse::extract_cstring( std::istream& i_stream, const std::string& i_name )
|
|
{
|
|
std::string temp_str;
|
|
std::getline( i_stream, temp_str, '\0' );
|
|
return temp_str;
|
|
} |