mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 14:37:29 +08:00
9de4780943
* Implement `format_amxstring(...)` * Implement `get_amxaddr(...)` * Implement `AddString(...)` * Implement `AddFloat(...)` * Implement `AddInt(...)` * Implement `AddHex(...)` * Implement `AddBin(...)` * Implement `__WHOA_DONT_CALL_ME_PLZ_K_lol_o_O()` * Implement `atcprintf(...)`
9 lines
254 B
C++
9 lines
254 B
C++
#ifndef _INCLUDE_FORMATTING_H
|
|
#define _INCLUDE_FORMATTING_H
|
|
|
|
//Amx Templatized Cell Printf
|
|
template <typename D, typename S>
|
|
size_t atcprintf(D *buffer, size_t maxlen, const S *format, AMX *amx, cell *params, int *param);
|
|
|
|
#endif //_INCLUDE_FORMATTING_H
|