MCPcopy Create free account
hub / github.com/GrapheneCt/NetStream / GetNext

Method GetNext

NetStream/source/yt_utils.cpp:21–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19static CURLSH *s_share = NULL;
20
21int32_t ytutils::Log::GetNext(char *data)
22{
23 int32_t ret;
24 char *sptr;
25 char val[2];
26
27 ret = m_ini->parse(data, val, sizeof(val));
28
29 if (ret == SCE_OK)
30 {
31 // Restore '='
32 sptr = sce_paf_strchr(data, '}');
33 while (sptr) {
34 *sptr = '=';
35 sptr = sce_paf_strchr(sptr, '}');
36 }
37 }
38
39 return ret;
40}
41
42int32_t ytutils::Log::Get(const char *data)
43{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected