mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-02-28 01:40:36 -05:00
core-util: Add pa_atoi64() and pa_atou64() functions
Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/51>
This commit is contained in:
parent
590fd1ca69
commit
ca66388608
2 changed files with 89 additions and 0 deletions
|
|
@ -151,6 +151,8 @@ int pa_atoi(const char *s, int32_t *ret_i);
|
|||
int pa_atou(const char *s, uint32_t *ret_u);
|
||||
int pa_atol(const char *s, long *ret_l);
|
||||
int pa_atod(const char *s, double *ret_d);
|
||||
int pa_atoi64(const char *s, int64_t *ret_l);
|
||||
int pa_atou64(const char *s, uint64_t *ret_u);
|
||||
|
||||
size_t pa_snprintf(char *str, size_t size, const char *format, ...);
|
||||
size_t pa_vsnprintf(char *str, size_t size, const char *format, va_list ap);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue