mirror of
https://github.com/thunderbrewhq/squall.git
synced 2026-02-04 08:59:07 +00:00
feat(str): add SStrVPrintf
This commit is contained in:
parent
75dc4e57a6
commit
4b1904ad4e
3 changed files with 65 additions and 2 deletions
|
|
@ -1,6 +1,7 @@
|
|||
#ifndef STORM_STRING_HPP
|
||||
#define STORM_STRING_HPP
|
||||
|
||||
#include <cstdarg>
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
|
||||
|
|
@ -33,6 +34,8 @@ uint32_t SStrPack(char* dest, const char* source, uint32_t destsize);
|
|||
|
||||
size_t SStrPrintf(char* dest, size_t maxchars, const char* format, ...);
|
||||
|
||||
size_t SStrVPrintf(char* dest, size_t maxchars, const char* format, va_list arglist);
|
||||
|
||||
const char* SStrStr(const char* string, const char* search);
|
||||
|
||||
void SStrTokenize(const char** string, char* buffer, size_t bufferchars, const char* whitespace, int32_t* quoted);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue