Module libc
Content
const Libc.Constants
|
[src] |
BUFSIZ |
s32 |
|
CLOCKS_PER_SEC |
s32 |
|
EOF |
s32 |
|
EXIT_FAILURE |
s32 |
|
EXIT_SUCCESS |
s32 |
|
FILENAME_MAX |
s32 |
|
FOPEN_MAX |
s32 |
|
FP_ILOGB0 |
s32 |
|
FP_ILOGBNAN |
s32 |
|
FP_INFINITE |
s32 |
|
FP_NAN |
s32 |
|
FP_NORMAL |
s32 |
|
FP_SUBNORMAL |
s32 |
|
FP_ZERO |
s32 |
|
ForeignLib |
string |
|
HUGE_VAL |
f64 |
|
HUGE_VALF |
f32 |
|
INFINITY |
f32 |
|
INT16_MAX |
s16 |
|
INT16_MIN |
s16 |
|
INT32_MAX |
s32 |
|
INT32_MIN |
s32 |
|
INT64_MAX |
s64 |
|
INT64_MIN |
s64 |
|
INT8_MAX |
s8 |
|
INT8_MIN |
s8 |
|
L_tmpnam |
s32 |
|
MATH_ERREXCEPT |
s32 |
|
MATH_ERRNO |
s32 |
|
NAN |
f64 |
|
PTRDIFF_MAX |
s64 |
|
PTRDIFF_MIN |
s64 |
|
SEEK_CUR |
s32 |
|
SEEK_END |
s32 |
|
SEEK_SET |
s32 |
|
SIZE_MAX |
u64 |
|
TIME_UTC |
s32 |
|
TMP_MAX |
s32 |
|
UINT16_MAX |
u16 |
|
UINT32_MAX |
u32 |
|
UINT64_MAX |
u64 |
|
UINT8_MAX |
u8 |
|
_IOFBF |
u32 |
|
_IOLBF |
u32 |
|
_IONBF |
u32 |
|
type alias Libc.Type Aliases
|
[src] |
func _Exit(status: s32)
func abort()
func abs(j: s32)->s32
func acos(x: f64)->f64
func acosf(x: f32)->f32
func acosh(x: f64)->f64
func acoshf(x: f32)->f32
func Libc.acrt_iob_func
|
[src] |
func acrt_iob_func(index: u32)->*FILE
func Libc.aligned_alloc
|
[src] |
func aligned_alloc(aligment, size: size_t)->*void
func asctime(timeptr: *tm)->*u8
func asin(x: f64)->f64
func asinf(x: f32)->f32
func asinh(x: f64)->f64
func asinhf(x: f32)->f32
func atan(x: f64)->f64
func atan2(y: f64, x: f64)->f64
func atan2f(y: f32, x: f32)->f32
func atanf(x: f32)->f32
func atanh(x: f64)->f64
func atanhf(x: f32)->f32
func atof(nptr: cstring)->f64
func atoi(nptr: cstring)->s32
func atol(nptr: cstring)->s32
func atoll(nptr: cstring)->s64
func bsearch(key, base: *void, nmemb, size: size_t, compar: *void)->*void
func calloc(nmemb, size: size_t)->*void
func cbrt(x: f64)->f64
func cbrtf(x: f32)->f32
func ceil(x: f64)->f64
func ceilf(x: f32)->f32
func clearerr(stream: *FILE)
func copysign(x: f64, y: f64)->f64
func Libc.copysignf
|
[src] |
func copysignf(x: f32, y: f32)->f32
func cos(x: f64)->f64
func cosf(x: f32)->f32
func cosh(x: f64)->f64
func coshf(x: f32)->f32
func ctime(timer: const *time_t)->*u8
func difftime(time1, time2: time_t)->f64
func div(numer, denom: s32)->div_t
func erf(x: f64)->f64
func erfc(x: f64)->f64
func erfcf(x: f32)->f32
func erff(x: f32)->f32
func exit(status: s32)
func exp(x: f64)->f64
func exp2(x: f64)->f64
func exp2f(x: f32)->f32
func expf(x: f32)->f32
func expm1(x: f64)->f64
func expm1f(x: f32)->f32
func fabs(x: f64)->f64
func fabsf(x: f32)->f32
func fclose(stream: *FILE)->s64
func fdim(x: f64, y: f64)->f64
func fdimf(x: f32, y: f32)->f32
func feof(stream: *FILE)->s64
func ferror(stream: *FILE)->s64
func fflush(stream: *FILE)->s64
func fgetc(stream: *FILE)->s64
func fgets(s: *u8, n: s64, stream: *FILE)->*u8
func floor(x: f64)->f64
func floorf(x: f32)->f32
func fma(x, y, z: f64)->f64
func fmaf(x, y, z: f32)->f32
func fmax(x: f64, y: f64)->f64
func fmaxf(x: f32, y: f32)->f32
func fmin(x: f64, y: f64)->f64
func fminf(x: f32, y: f32)->f32
func fmod(x: f64, y: f64)->f64
func fmodf(x: f32, y: f32)->f32
func fopen(filename, mode: cstring)->*FILE
func Libc.fpclassify
|
[src] |
func fpclassify(x: f64)->s32
func Libc.fpclassifyf
|
[src] |
func fpclassifyf(x: f32)->s32
func fprintf(file: *FILE, format: cstring, args: cvarargs)->s64
func fputc(s: cstring, stream: *FILE)->s64
func free(ptr: *void)
func freopen(filename, mode: cstring, stream: *FILE)->*FILE
func frexp(value: f64, exp: *s64)->f64
func frexpf(value: f32, exp: *s64)->f32
func fscanf(file: *FILE, format: cstring, args: cvarargs)->s64
func fseek(stream: *FILE, offset: s32, whence: s64)->s64
func ftell(stream: *FILE)->s32
func getc(stream: *FILE)->s64
func getchar()->s64
func getenv(name: cstring)->*u8
func hypot(x: f64, y: f64)->f64
func hypotf(x: f32, y: f32)->f32
func ilogb(x: f64)->s64
func ilogbf(x: f32)->s64
func isalnum(c: s32)->s32
func isalpha(c: s32)->s32
func isblank(c: s32)->s32
func iscntrl(c: s32)->s32
func isdigit(c: s32)->s32
func isfinite(x: f32)->bool
func isfinite(x: f64)->bool
func isgraph(c: s32)->s32
func Libc.isgreater
|
[src] |
func isgreater(x, y: f32)->bool
func isgreater(x, y: f64)->bool
func Libc.isgreaterequal
|
[src] |
func isgreaterequal(x, y: f32)->bool
func isgreaterequal(x, y: f64)->bool
func isinf(x: f32)->bool
func isinf(x: f64)->bool
func isless(x, y: f32)->bool
func isless(x, y: f64)->bool
func Libc.islessequal
|
[src] |
func islessequal(x, y: f32)->bool
func islessequal(x, y: f64)->bool
func Libc.islessgreater
|
[src] |
func islessgreater(x, y: f32)->bool
func islessgreater(x, y: f64)->bool
func islower(c: s32)->s32
func isnan(x: f32)->bool
func isnan(x: f64)->bool
func isnormal(x: f32)->bool
func isnormal(x: f64)->bool
func isprint(c: s32)->s32
func ispunct(c: s32)->s32
func isspace(c: s32)->s32
func Libc.isunordered
|
[src] |
func isunordered(x, y: f32)->bool
func isunordered(x, y: f64)->bool
func isupper(c: s32)->s32
func isxdigi(c: s32)->s32
func labs(j: s32)->s32
func ldexp(x: f64, exp: s64)->f64
func ldexpf(x: f32, exp: s64)->f32
func ldiv(numer, denom: s32)->ldiv_t
func lgamma(x: f64)->f64
func lgammaf(x: f32)->f32
func llabs(j: s64)->s64
func lldiv(numer, denom: s64)->lldiv_t
struct Libc.lldiv_t
|
[src] |
func llrint(x: f64)->s64
func llrintf(x: f32)->s64
func llround(x: f64)->s64
func llroundf(x: f32)->s64
func Libc.localtime
|
[src] |
func log(x: f64)->f64
func log10(x: f64)->f64
func log10f(x: f32)->f32
func log1p(x: f64)->f64
func log1pf(x: f32)->f32
func log2(x: f64)->f64
func log2f(x: f32)->f32
func logb(x: f64)->f64
func logbf(x: f32)->f32
func logf(x: f32)->f32
func lrint(x: f64)->s32
func lrintf(x: f32)->s32
func lround(x: f64)->s32
func lroundf(x: f32)->s32
func malloc(size: size_t)->*void
func mblen(s: cstring, n: size_t)->s32
func memchr(ptr: const *void, value: s32, num: size_t)->*void
func memcmp(ptr1, ptr2: const *void, num: size_t)->s32
func memcpy(dst: *void, src: const *void, num: size_t)->*void
func memmove(dst: *void, src: const *void, num: size_t)->*void
func memset(ptr: *void, value: s32, num: size_t)->*void
func modf(value: f64, iptr: *f64)->f64
func modff(value: f32, iptr: *f32)->f32
func nan(tagp: cstring)->f64
func nanf(tagp: cstring)->f32
func Libc.nearbyint
|
[src] |
func nearbyint(x: f64)->f64
func Libc.nearbyintf
|
[src] |
func nearbyintf(x: f32)->f32
func Libc.nextafter
|
[src] |
func nextafter(x: f64, y: f64)->f64
func Libc.nextafterf
|
[src] |
func nextafterf(x: f32, y: f32)->f32
func perror(s: cstring)
func pow(x: f64, y: f64)->f64
func powf(x: f32, y: f32)->f32
func printf(format: cstring, args: cvarargs)->s64
func putc(c: s64, stream: *FILE)->s64
func putchar()->s64
func puts(s: cstring)->s64
func qsort(base: *void, num, size: size_t, compar: *void)
func Libc.quick_exit
|
[src] |
func quick_exit(status: s32)
func rand()->s32
func realloc(ptr: *void, size: size_t)->*void
func Libc.remainder
|
[src] |
func remainder(x: f64, y: f64)->f64
func Libc.remainderf
|
[src] |
func remainderf(x: f32, y: f32)->f32
func remove(filename: cstring)->s64
func remquo(x: f64, y: f64, quo: *s64)->f64
func remquof(x: f32, y: f32, quo: *s64)->f32
func rename(old, new: cstring)->s64
func rewind(stream: *FILE)
func rint(x: f64)->f64
func rintf(x: f32)->f32
func round(x: f64)->f64
func roundf(x: f32)->f32
func scalbln(x: f64, n: s32)->f64
func scalblnf(x: f32, n: s32)->f32
func scalbn(x: f64, n: s64)->f64
func scalbnf(x: f32, n: s64)->f32
func scanf(format: cstring, args: cvarargs)->s64
func setbuf(stream: *FILE, buf: *u8)
func setvbuf(stream: *FILE, buf: *u8, mode: s64, size: size_t)->s64
func signbit(x: f32)->s32
func signbit(x: f64)->s32
func sin(x: f64)->f64
func sinf(x: f32)->f32
func sinh(x: f64)->f64
func sinhf(x: f32)->f32
func snprintf(s: *u8, count: size_t, format: cstring, args: cvarargs)->s64
func sprintf(s: *u8, format: cstring, args: cvarargs)->s64
func sqrt(x: f64)->f64
func sqrtf(x: f32)->f32
func srand(seed: u32)
func sscanf(s, format: cstring, args: cvarargs)->s64
func Libc.stdio_common_vfprintf
|
[src] |
func stdio_common_vfprintf(_Options: u64, _Stream: *FILE, _Format: cstring, _Locale: *void, _ArgList: *void)->s32
func Libc.stdio_common_vfscanf
|
[src] |
func stdio_common_vfscanf(_Options: u64, _Stream: *FILE, _Format: cstring, _Locale: *void, _ArgList: *void)->s32
func Libc.stdio_common_vsprintf
|
[src] |
func stdio_common_vsprintf(_Options: u64, _Buffer: *u8, _BufferCount: size_t, _Format: cstring, _Locale: *void, _ArgList: *void)->s32
func Libc.stdio_common_vsscanf
|
[src] |
func stdio_common_vsscanf(_Options: u64, _Buffer: cstring, _BufferCount: size_t, _Format: cstring, _Locale: *void, _ArgList: *void)->s32
func strcat(dst: *u8, src: cstring)->*u8
func strchr(str: cstring, character: s32)->*u8
func strcmp(str1, str2: cstring)->s32
func strcoll(str1, str2: cstring)->s32
func strcpy(dst: *u8, src: cstring)->*u8
func strcspn(str1, str2: cstring)->size_t
func strerror(errnum: s32)->cstring
func strftime(s: *u8, maxsize: size_t, format: const *u8, timeptr: *tm)->size_t
func strlen(s: cstring)->size_t
func strncat(dst: *u8, src: cstring, num: size_t)->*u8
func strncmp(str1, str2: cstring, num: u64)->s32
func strncpy(dst: *u8, src: cstring, num: size_t)->*u8
func strpbrk(str1: *u8, str2: cstring)->*u8
func strrchr(str: *u8, character: s32)->*u8
func strspn(str1, str2: cstring)->size_t
func strstr(str1: *u8, str2: cstring)->*u8
func strtod(nptr: cstring, endptr: **u8)->f64
func strtof(nptr: cstring, endptr: **u8)->f32
func strtok(str: *u8, delimiters: cstring)->*u8
func strtol(nptr: cstring, endptr: **u8, base: s32)->s32
func strtoll(nptr: cstring, endptr: **u8, base: s32)->s64
func strtoul(nptr: cstring, endptr: **u8, base: s32)->u32
func strtoull(nptr: cstring, endptr: **u8, base: s32)->u64
func system(cmd: cstring)->s32
func tan(x: f64)->f64
func tanf(x: f32)->f32
func tanh(x: f64)->f64
func tanhf(x: f32)->f32
func tgamma(x: f64)->f64
func tgammaf(x: f32)->f32
tm_sec |
s32 |
|
tm_min |
s32 |
|
tm_hour |
s32 |
|
tm_mday |
s32 |
|
tm_mon |
s32 |
|
tm_year |
s32 |
|
tm_wday |
s32 |
|
tm_yday |
s32 |
|
tm_isdst |
s32 |
|
func tmpnam(s: *u8)->*u8
func tolower(c: s32)->s32
func toupper(c: s32)->s32
func trunc(x: f64)->f64
func truncf(x: f32)->f32
func ungetc(c: s64, stream: *FILE)->s64
func vfprintf(file: *FILE, format: cstring, args: *va_list)->s64
func vfscanf(file: *FILE, format: cstring, args: *va_list)->s64
func vprintf(format: cstring, args: *va_list)->s64
func vscanf(format: cstring, args: *va_list)->s64
func Libc.vsnprintf
|
[src] |
func vsnprintf(s: *u8, count: size_t, format: cstring, args: *va_list)->s64
func vsprintf(s: *u8, format: cstring, args: *va_list)->s64
func vsscanf(s, format: cstring, args: *va_list)->s64
func wctomb(s: *u8, wc: wchar_t)->s32
Generated on 08-09-2024 with
swag 0.40.0