-
Notifications
You must be signed in to change notification settings - Fork 52
/
libc-functions.list
1450 lines (1450 loc) · 15.5 KB
/
libc-functions.list
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
_IO_file_close_it
__dgettext
__backtrace_symbols
_IO_wfile_xsputn
_IO_feof
malloc_usable_size
ctime
link
__poll
getline
posix_spawnattr_setschedparam
ether_aton_r
wcsnrtombs
__isnanf
setnetent
iscntrl
setutxent
_IO_default_uflow
swprintf
malloc_trim
__xpg_sigpause
bsearch
iswspace
memalign
__isnanl
addmntent
chdir
mrand48
obstack_printf
getgroups
_IO_doallocbuf
iruserok
setstate_r
_IO_file_setbuf
vswscanf
setlocale
toascii
tcsendbreak
wscanf
__sched_getscheduler
ssignal
getmntent_r
tempnam
_IO_popen
feof_unlocked
_mcleanup
tmpnam
memmem
pthread_getschedparam
strsep
__wcstod_internal
warn
getcontext
wcswcs
pselect
clock
stpncpy
__iswalpha_l
setpwent
inet_ntoa
initstate
nrand48
isprint
__wcstof_internal
muntrace
fgetgrent_r
lcong48
qsort
ftruncate64
vfscanf
wcscasecmp
setlinebuf
_IO_vfprintf
mcheck_check_all
hasmntopt
bcopy
re_compile_pattern
inet_ntop
ruserok
posix_fadvise64
wcsncmp
mincore
__connect
fgetc
posix_spawnattr_setsigmask
__wctype_l
__wcstod_l
lchown
iruserok_af
iopl
wcscmp
strncat
endusershell
__cxa_finalize
ether_ntoa
if_indextoname
_IO_list_resetlock
gethostbyname2_r
setgrent
ether_line
ntohl
mkstemp64
_IO_default_xsputn
getnetbyname
getusershell
_IO_seekmark
sched_get_priority_min
fgets
ntohs
globfree64
readdir_r
__wcstol_internal
_obstack_free
seteuid
vwprintf
_IO_list_unlock
getpwuid_r
mbstowcs
chflags
sched_setscheduler
_IO_wfile_seekoff
revoke
pwrite
setreuid
pthread_exit
updwtmp
read
argz_stringify
strxfrm
pthread_mutex_lock
__wcstoull_l
globfree
_IO_file_sync
_IO_str_init_static
setjmp
__xstat64
strchr
setitimer
__strtof_l
localtime
fileno
vlimit
__towupper_l
_IO_str_seekoff
_IO_file_underflow
_IO_fclose
alarm
labs
gethostbyname_r
re_search
fcvt
setcontext
stpcpy
getaliasent
pthread_mutex_unlock
_obstack_begin_1
mallinfo
creat
_IO_wsetb
getspent_r
_IO_funlockfile
vsyslog
gettext
__towlower_l
ntp_gettime
drand48_r
_IO_wdefault_xsputn
catgets
malloc
_IO_switch_to_get_mode
munlockall
freeaddrinfo
sigdelset
posix_spawnattr_getschedpolicy
strfmon
gethostent_r
iconv_close
sysinfo
re_comp
__fxstat64
getwc
__argz_count
getwd
write
malloc_stats
usleep
__wcsncasecmp_l
_IO_default_finish
_IO_file_close
isblank
fseek
fcntl
msgrcv
__getpgid
__wcstoul_internal
_IO_wfile_underflow
getdate_r
fts_set
readv
vasprintf
ttyname
__open64
connect
__dcgettext
sethostid
rpmatch
__strncasecmp_l
creat64
isinff
_IO_init_marker
getpid
memmove
srandom
__isblank_l
__isdigit_l
strcspn
gethostent
isinfl
backtrace_symbols
quotactl
argz_add
sendto
munmap
shutdown
dirname
posix_spawn_file_actions_addopen
wcsncpy
sigorset
__iswcntrl_l
getprotoent
__backtrace
fwrite_unlocked
_IO_wmarker_delta
longjmp
re_match
pthread_mutex_destroy
verr
mmap64
ulckpwdf
seed48_r
chown
mbsinit
wcscpy
recv
__strcasecmp
_IO_wdefault_finish
posix_memalign
localtime_r
__assert_fail
getpass
setegid
updwtmpx
ctime_r
argz_replace
__rawmemchr
_setjmp
setregid
__wcstold_l
killpg
alphasort64
__nss_configure_lookup
wordexp
modf
closelog
__flbf
fts_read
regcomp
__strsep_g
fsetpos64
_IO_fgets
dirfd
__wcstof_l
wcsspn
ffsl
hsearch
sigsuspend
dprintf
getsockname
setgroups
mprotect
__strtold_l
backtrace_symbols_fd
endaliasent
_IO_fgetpos64
srand48
getservent_r
mblen
rindex
ngettext
__toupper_l
jrand48_r
__select
index
__fxstat
__iswpunct_l
sendmsg
_toupper
waitid
_tolower
wcstod
__tolower_l
rename
isnanf
wcstof
memfrob
getutmpx
ruserok_af
__libc_init_first
sigstack
_IO_do_write
__fsetlocking
wcstok
wcstoumax
wcstol
getrpcbyname
isnanl
argp_failure
timegm
scandir
getnameinfo
pthread_attr_setschedparam
sigaltstack
lockf
mktemp
mremap
getpgid
_IO_setbuffer
wcstoq
getwchar_unlocked
sethostent
get_avphys_pages
gnu_get_libc_version
twalk
_IO_unsave_markers
posix_fadvise
__vsnprintf
gcvt
__arch_prctl
initstate_r
isupper
strtoumax
islower
getutent_r
posix_spawnattr_getflags
fgetc_unlocked
flockfile
fstatfs
sched_getscheduler
sigrelse
_IO_fprintf
setlogmask
_IO_init_wmarker
ptrace
hdestroy
rresvport
_IO_list_lock
rand
__read
strtoul
siginterrupt
envz_merge
fscanf
endprotoent
obstack_free
wmemset
fputc
strtouq
hcreate
_IO_file_read
isgraph
strcmp
__res_randomid
getgrouplist
fprintf
pthread_attr_setinheritsched
_IO_sputbackc
sigpending
getaliasbyname
_IO_fflush
get_phys_pages
gtty
fputs
div
iswalnum
pututxline
_IO_wfile_sync
nanosleep
bsd_signal
sigisemptyset
funlockfile
__sysv_signal
remove
__wcsxfrm_l
ldexpf
__lxstat64
getc
sigaddset
fts_children
pthread_attr_destroy
mcheck
_IO_getc
ldexpl
mlockall
if_nametoindex
posix_spawnattr_setschedpolicy
umount
bcmp
__strxfrm_l
socket
gets
asctime_r
strptime
inet_netof
alphasort
ffs
getw
_IO_gets
getaliasbyname_r
getspnam_r
_IO_str_underflow
inet_makeaddr
_IO_str_overflow
__lxstat
_IO_wdefault_uflow
group_member
inet_pton
__libc_freeres
getnetbyaddr
localeconv
syslog
fputwc
__sched_getparam
argz_create_sep
_IO_default_pbackfail
envz_get
atof
wmemchr
mcheck_pedantic
lsearch
signal
atoi
re_match_2
getnetgrent
atol
makecontext
fwscanf
wcsstr
__ctype_get_mb_cur_max
ftrylockfile
fcvt_r
fputws
tcgetattr
putspent
fopen
getopt
posix_spawnattr_getschedparam
fgets_unlocked
getutid_r
__isprint_l
wcrtomb
getservbyname
iswcntrl
getservent
__freelocale
warnx
__fwriting
__freading
isxdigit
siggetmask
setstate
getsid
rcmd
fclose
execle
__sigsetjmp
tcdrain
gnu_get_libc_release
getutline_r
uname
getrpcbyname_r
_IO_sungetc
_dl_mcount_wrapper_check
__duplocale
execlp
fputc_unlocked
_IO_file_overflow
tcgetpgrp
open64
posix_spawn_file_actions_adddup2
__nl_langinfo_l
iswctype
isnan
_IO_str_init_readonly
__sched_yield
strcpy
sockatmark
ldexp
freopen
imaxdiv
__strdup
getchar
__wcstold_internal
dcgettext
catopen
_IO_file_stat
_IO_fdopen
__wcstoull_internal
__libc_valloc
endhostent
__strverscmp
pvalloc
inet_aton
strtok_r
wcscoll
remque
wcsnlen
iswprint
swab
_IO_switch_to_wbackup_area
argz_count
__uflow
unlink
backtrace
__libc_memalign
fgetspent_r
wcslen
srand
strspn
_IO_fputs
clone
wcsdup
modff
getrusage
wcpncpy
cuserid
on_exit
swapcontext
dl_iterate_phdr
ptsname_r
re_set_syntax
modfl
putenv
hcreate_r
strncasecmp
vwarnx
__write
gmtime_r
fstatvfs64
setdomainname
getservbyname_r
vfwprintf
__cxa_atexit
ispunct
rawmemchr
pthread_attr_getschedpolicy
__iswspace_l
ether_aton
__fcntl
argz_extract
setaliasent
_IO_unsave_wmarkers
rcmd_af
swapoff
wcspbrk
_IO_iter_end
strtod
setservent
strtof
endnetgrent
__wcstoll_internal
wcsrchr
strtok
strtol
strsignal
__sched_get_priority_max
asprintf
__iswctype
posix_fallocate
register_printf_function
a64l
strtoq
__getpagesize
_obstack_begin
brk
ftello
_IO_ungetc
iswxdigit
pthread_equal
memset
_IO_setvbuf
select
umask
strcasecmp
__strtok_r
pwrite64
bzero
__finitef
getprotobyname_r
__iswupper_l
__strcasestr
__pread64
llabs
sigemptyset
strtoull
if_freenameindex
__finitel
getttyent
setvbuf
_IO_free_wbackup_area
sched_getparam
__cmsg_nxthdr
getrpcent_r
__iswlower_l
__endmntent
madvise
_IO_fopen
_obstack_newchunk
_IO_remove_marker
strncmp
random
btowc
pread
getrlimit64
mkfifo
posix_madvise
scanf
isinf
__gmtime_r
_IO_vsprintf
re_compile_fastmap
qecvt_r
vsnprintf
fputs_unlocked
__fpurge
putwchar
execl
putpwent
recvfrom
setprotoent
fgetwc_unlocked
iswblank
shmat
execv
getprotobynumber_r
pthread_setcancelstate
__asprintf
__strtoull_l
endttyent
_IO_ferror
wmemmove
__wuflow
versionsort64
mktime
ptsname
__isgraph_l
putc
re_search_2
wmemcmp
vhangup
getuid
__isascii_l
__libc_pvalloc
utmpname
__pwrite64
__monstartup
getopt_long
_IO_putc
_IO_file_doallocate
fputwc_unlocked
arch_prctl
__libc_mallinfo
__res_ninit
__strtol_l
memchr
msgget
_IO_seekoff
__strfmon_l
closedir
writev
ftell
putgrent
tcflow
puts
vdprintf
gethostname
putw
isdigit
_IO_puts
getdtablesize
_IO_proc_open
regfree
envz_remove
__mempcpy
pclose
vscanf
__setpgid
_IO_fsetpos64
free
__isalnum_l
statvfs64
fflush
msync
system
getutline
putwc
tolower
toupper
getrpcbynumber
strstr
finitef
utimes
shmget
catclose
pread64
_IO_file_seek
wcstoull
finitel
mallopt
argp_help
getc_unlocked
posix_spawnattr_setsigdefault
semop
ldiv
rmdir
socketpair
getpgrp
_IO_sungetwc
getrpcent
fcloseall
setsid
msgsnd
mprobe
_flushlbf
openlog
__sigaction
pthread_attr_getdetachstate
_IO_sgetn
getprotoent_r
copysignf
obstack_vprintf
posix_spawnattr_setflags
lfind
close
sigwaitinfo
pthread_attr_getschedparam
copysignl
open
_IO_getline_info
vfprintf
__towctrans_l
strncpy
endservent
_IO_adjust_column
fgetws_unlocked
__strerror_r
tdestroy
__wunderflow
getloadavg
_IO_flockfile
cfmakeraw
__strtod_internal
wcstold
tzset
shmdt
fdatasync
confstr
pututline
__libc_calloc
endrpcent
iswlower
iswupper
tsearch
wcstoll
pthread_attr_setschedpolicy
argp_parse
sprofil
__strtof_internal
fchmod
getgid
statfs64
__isalpha_l
fputws_unlocked
__sysconf
pipe
endspent
argz_append
__strtoul_internal
strlen
__wcstol_l
getfsspec
sbrk
ttyslot
strdup
wmemcpy
__finite
_IO_free_backup_area
mcount
ulimit
_IO_sputbackwc
memrchr
ffsll
__overflow
sched_rr_get_interval
argp_state_help
getpwuid
getttynam
clearenv
getprotobynumber
__setmntent
sleep
inet_network
iswgraph
fflush_unlocked
canonicalize_file_name
mempcpy
qecvt
fileno_unlocked
argz_add_sep
getdelim
setpgid
nrand48_r
_IO_ftell
getspent
__strtol_internal
_IO_peekc_locked
endutent
endfsent
__underflow
getgrgid_r
tfind
raise
getresuid
klogctl
posix_spawnattr_destroy
__iswblank_l
__iswdigit_l
fdopen
cfgetispeed
setttyent
vfwscanf
ctermid
setnetgrent
_IO_wdo_write
mlock
get_nprocs
getpriority
modify_ldt
capset
strfry
frexp
getenv
sigignore
err
cfsetspeed
__libc_current_sigrtmax
__mbrlen
__libc_mallopt
strverscmp
getmntent
getrlimit
posix_openpt
inet_nsap_addr
getprotobyname
__isnan
getpwent_r
getlogin
unsetenv
ruserpass
__argz_next
getutent
_obstack_memory_used
getfsent
send
isalpha
__fpending
sysv_signal
__isxdigit_l
clearerr_unlocked
pthread_attr_getscope
rexec
__assert_perror_fail
getutxline
ualarm
argz_create
_IO_default_doallocate
utime
_IO_iter_file
memcmp
_IO_fgetpos
getdate
daemon
__printf_fp
putc_unlocked
getpeername
gsignal
__getdelim
_IO_sprintf
reboot
settimeofday
_IO_un_link
asctime
vfork
fts_open
getopt_long_only
dngettext
__signbit
dup
__newlocale
__clone
getservbyport_r
basename
scandir64
sigismember
fgetpos
gai_strerror
realloc
putwchar_unlocked
__towctrans
fopen64
tmpfile
_IO_wfile_overflow
endmntent
__cyg_profile_func_enter
sysconf
sprintf
recvmsg
ungetc
__getmntent_r
sigqueue
setuid
wordfree
__sched_get_priority_min
__vsscanf
bind_textdomain_codeset
_mcount
fwprintf
getservbyport
execve
textdomain
wcsncat
wcstoimax
isspace
dcngettext
inet_nsap_ntoa
getfsfile
__xmknod
__strndup
wcswidth
fseeko
wcscat
execvp
getutxid
__strcasecmp_l
lseek
_IO_fwrite
_IO_padn
strcasestr
addseverity
getaliasent_r
strtoimax
regerror
posix_spawn_file_actions_addclose
glob_pattern_p
wcstombs
getaddrinfo
re_exec
posix_spawnattr_getpgroup
readdir64
random_r
__bzero
__res_state
getnetbyaddr_r
timelocal
tcflush
mtrace
sigprocmask
wcsxfrm
wctype
__wcstoll_l
rewinddir
argp_usage
pthread_setschedparam
syscall
bind
sigblock
__iscntrl_l
endpwent
hstrerror
tcsetattr
pthread_attr_setdetachstate
msgctl
copysign
fsync
getdirentries64
getutid
geteuid
getresgid
rresvport_af
__toascii_l
pivot_root