|
ascii-chat 0.6.0
Real-time terminal-based video chat with ASCII art conversion
|
🔄 musl C23 compatibility wrappers for __isoc23_* symbol aliases (glibc 2.38+ compatibility) More...
Go to the source code of this file.
Functions | |
| long | __isoc23_strtol (const char *str, char **endptr, int base) |
| long long | __isoc23_strtoll (const char *str, char **endptr, int base) |
| unsigned long | __isoc23_strtoul (const char *str, char **endptr, int base) |
| unsigned long long | __isoc23_strtoull (const char *str, char **endptr, int base) |
| long | __isoc23_wcstol (const wchar_t *str, wchar_t **endptr, int base) |
| long long | __isoc23_wcstoll (const wchar_t *str, wchar_t **endptr, int base) |
| unsigned long | __isoc23_wcstoul (const wchar_t *str, wchar_t **endptr, int base) |
| unsigned long long | __isoc23_wcstoull (const wchar_t *str, wchar_t **endptr, int base) |
| int | __isoc23_scanf (const char *format,...) |
| int | __isoc23_fscanf (FILE *stream, const char *format,...) |
| int | __isoc23_sscanf (const char *str, const char *format,...) |
| int | __isoc23_vscanf (const char *format, va_list args) |
| int | __isoc23_vfscanf (FILE *stream, const char *format, va_list args) |
| int | __isoc23_vsscanf (const char *str, const char *format, va_list args) |
| int | __isoc23_wscanf (const wchar_t *format,...) |
| int | __isoc23_fwscanf (FILE *stream, const wchar_t *format,...) |
| int | __isoc23_swscanf (const wchar_t *str, const wchar_t *format,...) |
| int | __isoc23_vwscanf (const wchar_t *format, va_list args) |
| int | __isoc23_vfwscanf (FILE *stream, const wchar_t *format, va_list args) |
| int | __isoc23_vswscanf (const wchar_t *str, const wchar_t *format, va_list args) |
🔄 musl C23 compatibility wrappers for __isoc23_* symbol aliases (glibc 2.38+ compatibility)
Note: These aliases provide the base functionality but don't implement the full C23 binary literal support (0b/0B prefix) until musl adds native support.
References:
Definition in file musl_c23_compat.c.
| int __isoc23_fscanf | ( | FILE * | stream, |
| const char * | format, | ||
| ... | |||
| ) |
Definition at line 120 of file musl_c23_compat.c.
| int __isoc23_fwscanf | ( | FILE * | stream, |
| const wchar_t * | format, | ||
| ... | |||
| ) |
Definition at line 157 of file musl_c23_compat.c.
| int __isoc23_scanf | ( | const char * | format, |
| ... | |||
| ) |
Definition at line 112 of file musl_c23_compat.c.
| int __isoc23_sscanf | ( | const char * | str, |
| const char * | format, | ||
| ... | |||
| ) |
Definition at line 128 of file musl_c23_compat.c.
| long __isoc23_strtol | ( | const char * | str, |
| char ** | endptr, | ||
| int | base | ||
| ) |
Definition at line 22 of file musl_c23_compat.c.
| long long __isoc23_strtoll | ( | const char * | str, |
| char ** | endptr, | ||
| int | base | ||
| ) |
Definition at line 82 of file musl_c23_compat.c.
| unsigned long __isoc23_strtoul | ( | const char * | str, |
| char ** | endptr, | ||
| int | base | ||
| ) |
Definition at line 86 of file musl_c23_compat.c.
| unsigned long long __isoc23_strtoull | ( | const char * | str, |
| char ** | endptr, | ||
| int | base | ||
| ) |
Definition at line 90 of file musl_c23_compat.c.
| int __isoc23_swscanf | ( | const wchar_t * | str, |
| const wchar_t * | format, | ||
| ... | |||
| ) |
Definition at line 165 of file musl_c23_compat.c.
| int __isoc23_vfscanf | ( | FILE * | stream, |
| const char * | format, | ||
| va_list | args | ||
| ) |
Definition at line 140 of file musl_c23_compat.c.
| int __isoc23_vfwscanf | ( | FILE * | stream, |
| const wchar_t * | format, | ||
| va_list | args | ||
| ) |
Definition at line 177 of file musl_c23_compat.c.
| int __isoc23_vscanf | ( | const char * | format, |
| va_list | args | ||
| ) |
Definition at line 136 of file musl_c23_compat.c.
| int __isoc23_vsscanf | ( | const char * | str, |
| const char * | format, | ||
| va_list | args | ||
| ) |
Definition at line 144 of file musl_c23_compat.c.
| int __isoc23_vswscanf | ( | const wchar_t * | str, |
| const wchar_t * | format, | ||
| va_list | args | ||
| ) |
Definition at line 181 of file musl_c23_compat.c.
| int __isoc23_vwscanf | ( | const wchar_t * | format, |
| va_list | args | ||
| ) |
Definition at line 173 of file musl_c23_compat.c.
| long __isoc23_wcstol | ( | const wchar_t * | str, |
| wchar_t ** | endptr, | ||
| int | base | ||
| ) |
Definition at line 95 of file musl_c23_compat.c.
| long long __isoc23_wcstoll | ( | const wchar_t * | str, |
| wchar_t ** | endptr, | ||
| int | base | ||
| ) |
Definition at line 99 of file musl_c23_compat.c.
| unsigned long __isoc23_wcstoul | ( | const wchar_t * | str, |
| wchar_t ** | endptr, | ||
| int | base | ||
| ) |
Definition at line 103 of file musl_c23_compat.c.
| unsigned long long __isoc23_wcstoull | ( | const wchar_t * | str, |
| wchar_t ** | endptr, | ||
| int | base | ||
| ) |
Definition at line 107 of file musl_c23_compat.c.
| int __isoc23_wscanf | ( | const wchar_t * | format, |
| ... | |||
| ) |
Definition at line 149 of file musl_c23_compat.c.