-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathktags.wh
2247 lines (2243 loc) · 96.7 KB
/
ktags.wh
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
abort whelp clib abort
abs whelp clib abs
access whelp clib "access, _access, _waccess"
_access whelp clib "access, _access, _waccess"
acos whelp clib acos
acosh whelp clib acosh
alloca whelp clib alloca
_amblksiz whelp clib "Global Data"
_arc_w whelp clib "_arc, _arc_w, _arc_wxy"
_arc_wxy whelp clib "_arc, _arc_w, _arc_wxy"
_arc whelp clib "_arc, _arc_w, _arc_wxy"
__argc whelp clib "Global Data"
__argv whelp clib "Global Data"
asctime whelp clib "asctime Functions"
_asctime whelp clib "asctime Functions"
asin whelp clib asin
asinh whelp clib asinh
assert whelp clib assert
atan whelp clib atan
atan2 whelp clib atan2
atanh whelp clib atanh
atexit whelp clib atexit
atof whelp clib "atof, _wtof"
atoi whelp clib "atoi, _wtoi"
atol whelp clib "atol, _wtol"
_atouni whelp clib _atouni
_bcalloc whelp clib "calloc Functions"
bcmp whelp clib bcmp
bcopy whelp clib bcopy
bdos whelp clib bdos
_beginthread whelp clib _beginthread
_bexpand whelp clib "_expand Functions"
_bfree whelp clib "free Functions"
_bfreeseg whelp clib _bfreeseg
_bgetcmd whelp clib _bgetcmd
_bheapchk whelp clib "_heapchk Functions"
_bheapmin whelp clib "_heapmin Functions"
_bheapseg whelp clib _bheapseg
_bheapset whelp clib "_heapset Functions"
_bheapshrink whelp clib "_heapshrink Functions"
_bheapwalk whelp clib "_heapwalk Functions"
_bios_disk whelp clib _bios_disk
_bios_equiplist whelp clib _bios_equiplist
_bios_keybrd whelp clib _bios_keybrd
_bios_memsize whelp clib _bios_memsize
_bios_printer whelp clib _bios_printer
_bios_serialcom whelp clib _bios_serialcom
_bios_timeofday whelp clib _bios_timeofday
_bmalloc whelp clib "malloc Functions"
_bmsize whelp clib "_msize Functions"
_bprintf whelp clib "_bprintf, _bwprintf"
_breakoff whelp clib "break Functions"
_breakon whelp clib "break Functions"
_brealloc whelp clib "realloc Functions"
bsearch whelp clib bsearch
_bwprintf whelp clib "_bprintf, _bwprintf"
bzero whelp clib bzero
cabs whelp clib cabs
calloc whelp clib "calloc Functions"
ceil whelp clib ceil
cgets whelp clib cgets
_chain_intr whelp clib _chain_intr
chdir whelp clib "chdir, _wchdir"
chmod whelp clib "chmod, _wchmod"
chsize whelp clib chsize
_clear87 whelp clib _clear87
clearenv whelp clib clearenv
clearerr whelp clib clearerr
_clearscreen whelp clib _clearscreen
clock whelp clib clock
close whelp clib "close, _close"
_close whelp clib "close, _close"
closedir whelp clib "closedir, _wclosedir"
_cmdname whelp clib _cmdname
_control87 whelp clib _control87
_controlfp whelp clib _controlfp
cos whelp clib cos
cosh whelp clib cosh
cprintf whelp clib cprintf
cputs whelp clib cputs
creat whelp clib "creat, _wcreat"
cscanf whelp clib cscanf
ctime whelp clib "ctime Functions"
_ctime whelp clib "ctime Functions"
cwait whelp clib cwait
daylight whelp clib "Global Data"
delay whelp clib delay
_dieeetomsbin whelp clib _dieeetomsbin
difftime whelp clib difftime
_disable whelp clib _disable
_displaycursor whelp clib _displaycursor
div whelp clib div
_dmsbintoieee whelp clib _dmsbintoieee
_dos_allocmem whelp clib _dos_allocmem
_dos_close whelp clib _dos_close
_dos_commit whelp clib _dos_commit
_dos_creat whelp clib _dos_creat
_dos_creatnew whelp clib _dos_creatnew
_dos_findclose whelp clib "_dos_find Functions"
_dos_findfirst whelp clib "_dos_find Functions"
_dos_findnext whelp clib "_dos_find Functions"
_dos_freemem whelp clib _dos_freemem
_dos_getdate whelp clib _dos_getdate
_dos_getdiskfree whelp clib _dos_getdiskfree
_dos_getdrive whelp clib _dos_getdrive
_dos_getfileattr whelp clib _dos_getfileattr
_dos_getftime whelp clib _dos_getftime
_dos_gettime whelp clib _dos_gettime
_dos_getvect whelp clib _dos_getvect
_dos_keep whelp clib _dos_keep
_dos_open whelp clib _dos_open
_dos_read whelp clib _dos_read
_dos_setblock whelp clib _dos_setblock
_dos_setdate whelp clib _dos_setdate
_dos_setdrive whelp clib _dos_setdrive
_dos_setfileattr whelp clib _dos_setfileattr
_dos_setftime whelp clib _dos_setftime
_dos_settime whelp clib _dos_settime
_dos_setvect whelp clib _dos_setvect
_dos_write whelp clib _dos_write
_doserrno whelp clib "Global Data"
dosexterr whelp clib dosexterr
dup whelp clib "dup, _dup"
dup2 whelp clib dup2
_dup whelp clib "dup, _dup"
_dwDeleteOnClose whelp clib _dwDeleteOnClose
_dwSetAboutDlg whelp clib _dwSetAboutDlg
_dwSetAppTitle whelp clib _dwSetAppTitle
_dwSetConTitle whelp clib _dwSetConTitle
_dwShutDown whelp clib _dwShutDown
_dwYield whelp clib _dwYield
ecvt whelp clib "ecvt, _ecvt"
_ecvt whelp clib "ecvt, _ecvt"
_ellipse_w whelp clib "_ellipse, _ellipse_w, _ellipse_wxy"
_ellipse_wxy whelp clib "_ellipse, _ellipse_w, _ellipse_wxy"
_ellipse whelp clib "_ellipse, _ellipse_w, _ellipse_wxy"
_enable whelp clib _enable
_endthread whelp clib _endthread
environ whelp clib "Global Data"
eof whelp clib eof
errno whelp clib "Global Data"
execl whelp clib "exec Functions"
execle whelp clib "exec Functions"
execle whelp clib "exec Functions"
execlpe whelp clib "exec Functions"
execv whelp clib "exec Functions"
execve whelp clib "exec Functions"
execvp whelp clib "exec Functions"
execvpe whelp clib "exec Functions"
exit whelp clib exit
_exit whelp clib _exit
exp whelp clib exp
_expand whelp clib "_expand Functions"
fabs whelp clib fabs
_fcalloc whelp clib "calloc Functions"
fclose whelp clib fclose
fcloseall whelp clib fcloseall
fcvt whelp clib "fcvt, _fcvt, _wfcvt"
_fcvt whelp clib "fcvt, _fcvt, _wfcvt"
fdopen whelp clib "fdopen, _fdopen, _wfdopen"
_fdopen whelp clib "fdopen, _fdopen, _wfdopen"
feof whelp clib feof
ferror whelp clib ferror
_fexpand whelp clib "_expand Functions"
fflush whelp clib fflush
_ffree whelp clib "free Functions"
fgetc whelp clib "fgetc, fgetwc"
fgetchar whelp clib "fgetchar, _fgetchar, _fgetwchar"
_fgetchar whelp clib "fgetchar, _fgetchar, _fgetwchar"
fgetpos whelp clib fgetpos
fgets whelp clib "fgets, fgetws"
fgetwc whelp clib "fgetc, fgetwc"
_fgetwchar whelp clib "fgetchar, _fgetchar, _fgetwchar"
fgetws whelp clib "fgets, fgetws"
_fheapchk whelp clib "_heapchk Functions"
_fheapgrow whelp clib "_heapgrow Functions"
_fheapmin whelp clib "_heapmin Functions"
_fheapset whelp clib "_heapset Functions"
_fheapshrink whelp clib "_heapshrink Functions"
_fheapwalk whelp clib "_heapwalk Functions"
_fieeetomsbin whelp clib _fieeetomsbin
filelength whelp clib "filelength, _filelengthi64"
_filelengthi64 whelp clib "filelength, _filelengthi64"
_FILENAMEMAX whelp clib FILENAME_MAX
fileno whelp clib fileno
_findclose whelp clib _findclose
_findfirst whelp clib "_findfirst, _findfirsti64, _wfindfirst, _wfindfirsti64"
_findfirsti64 whelp clib "_findfirst, _findfirsti64, _wfindfirst, _wfindfirsti64"
_findnext whelp clib "_findnext, _findnexti64, _wfindnext, _wfindnexti64"
_findnexti64 whelp clib "_findnext, _findnexti64, _wfindnext, _wfindnexti64"
_finite whelp clib _finite
_floodfill_w whelp clib "_floodfill, _floodfill_w"
_floodfill whelp clib "_floodfill, _floodfill_w"
floor whelp clib floor
fltused_ whelp clib "Global Data"
flushall whelp clib flushall
_fmalloc whelp clib "malloc Functions"
_fmbccmp whelp clib "_mbccmp, _fmbccmp"
_fmbccpy whelp clib "_mbccpy, _fmbccpy"
_fmbcicmp whelp clib "_mbcicmp, _fmbcicmp"
_fmbclen whelp clib "_mbclen, _fmbclen"
_fmbgetcode whelp clib "_mbgetcode, _fmbgetcode"
_fmblen whelp clib "mblen, _fmblen"
_fmbputchar whelp clib "_mbputchar, _fmbputchar"
_fmbrlen whelp clib "mbrlen, _fmbrlen"
_fmbrtowc whelp clib "mbrtowc, _fmbrtowc"
_fmbsbtype whelp clib "_mbsbtype, _fmbsbtype"
_fmbscat whelp clib "strcat, _fstrcat, wcscat, _mbscat, _fmbscat"
_fmbschr whelp clib "strchr, _fstrchr, wcschr, _mbschr, _fmbschr"
_fmbscmp whelp clib "strcmp, _fstrcmp, wcscmp, _mbscmp, _fmbscmp"
_fmbscpy whelp clib "strcpy, _fstrcpy, wcscpy, _mbscpy, _fmbscpy"
_fmbscspn whelp clib "strcspn, _fstrcspn, wcscspn, _mbscspn, _fmbscspn"
_fmbsdec whelp clib "_strdec, _wcsdec, _mbsdec, _fmbsdec"
_fmbsdup whelp clib "strdup, _strdup, _fstrdup, _wcsdup, _mbsdup, _fmbsdup"
_fmbsicmp whelp clib "stricmp, _stricmp, _fstricmp, _wcsicmp, _mbsicmp, _fmbsicmp"
_fmbsinc whelp clib "_strinc, _wcsinc, _mbsinc, _fmbsinc"
_fmbslen whelp clib "strlen, _fstrlen, wcslen, _mbslen, _fmbslen"
_fmbslwr whelp clib "strlwr, _strlwr, _fstrlwr, _wcslwr, _mbslwr, _fmbslwr"
_fmbsnbcat whelp clib "_mbsnbcat, _fmbsnbcat"
_fmbsnbcmp whelp clib "_mbsnbcmp, _fmbsnbcmp"
_fmbsnbcnt whelp clib "_mbsnbcnt, _fmbsnbcnt, _strncnt, _wcsncnt"
_fmbsnbcpy whelp clib "_mbsnbcpy, _fmbsnbcpy"
_fmbsnbicmp whelp clib "_mbsnbicmp, _fmbsnbicmp"
_fmbsnbset whelp clib "_mbsnbset, _fmbsnbset"
_fmbsncat whelp clib "strncat, _fstrncat, wcsncat, _mbsncat, _fmbsncat"
_fmbsnccnt whelp clib "_mbsnccnt, _fmbsnccnt, _strncnt, _wcsncnt"
_fmbsncmp whelp clib "strncmp, _fstrncmp, wcsncmp, _mbsncmp, _fmbsncmp"
_fmbsncpy whelp clib "strncpy, _fstrncpy, wcsncpy, _mbsncpy, _fmbsncpy"
_fmbsnextc whelp clib "_mbsnextc, _fmbsnextc, _strnextc, _wcsnextc"
_fmbsnicmp whelp clib "strnicmp, _strnicmp, _fstrnicmp, _wcsnicmp, _mbsnicmp, _fmbsnicmp"
_fmbsninc whelp clib "_strninc, _wcsninc, _mbsninc, _fmbsninc"
_fmbsnset whelp clib "strnset, _strnset, _fstrnset, _wcsnset, _mbsnset, _fmbsnset"
_fmbspbrk whelp clib "strpbrk, _fstrpbrk, wcspbrk, _mbspbrk, _fmbspbrk"
_fmbsrchr whelp clib "strrchr, _fstrrchr, wcsrchr, _mbsrchr, _fmbsrchr"
_fmbsrev whelp clib "strrev, _strrev, _fstrrev, _wcsrev, _mbsrev, _fmbsrev"
_fmbsrtowcs whelp clib "mbsrtowcs, _fmbsrtowcs"
_fmbsset whelp clib "strset, _strset, _fstrset, _wcsset, _mbsset, _fmbsset"
_fmbsspn whelp clib "strspn, _fstrspn, wcsspn, _mbsspn, _fmbsspn"
_fmbsspnp whelp clib "strspnp, _strspnp, _fstrspnp, _wcsspnp, _mbsspnp, _fmbsspnp"
_fmbsstr whelp clib "strstr, _fstrstr, wcsstr, _mbsstr, _fmbsstr"
_fmbstok whelp clib "strtok, _fstrtok, wcstok, _mbstok, _fmbstok"
_fmbstowcs whelp clib "mbstowcs, _fmbstowcs"
_fmbsupr whelp clib "strupr, _strupr, _fstrupr, _wcsupr, _mbsupr, _fmbsupr"
_fmbterm whelp clib "_mbterm, _fmbterm"
_fmbtowc whelp clib "mbtowc, _fmbtowc"
_fmbvtop whelp clib "_mbvtop, _fmbvtop"
_fmemccpy whelp clib "memccpy, _fmemccpy"
_fmemchr whelp clib "memchr, _fmemchr"
_fmemcmp whelp clib "memcmp, _fmemcmp"
_fmemcpy whelp clib "memcpy, _fmemcpy"
_fmemicmp whelp clib "memicmp, _memicmp, _fmemicmp"
_fmemmove whelp clib "memmove, _fmemmove"
_fmemset whelp clib "memset, _fmemset"
fmod whelp clib fmod
_fmode whelp clib "Global Data"
_fmsbintoieee whelp clib _fmsbintoieee
_fmsize whelp clib "_msize Functions"
fopen whelp clib "fopen, _wfopen"
_FPOFF whelp clib FP_OFF
_fpreset whelp clib _fpreset
fprintf whelp clib "fprintf, fwprintf"
_FPSEG whelp clib FP_SEG
fputc whelp clib "fputc, fputwc"
fputchar whelp clib "fputchar, _fputchar, _fputwchar"
_fputchar whelp clib "fputchar, _fputchar, _fputwchar"
fputs whelp clib "fputs, fputws"
fputwc whelp clib "fputc, fputwc"
_fputwchar whelp clib "fputchar, _fputchar, _fputwchar"
fputws whelp clib "fputs, fputws"
fread whelp clib fread
_frealloc whelp clib "realloc Functions"
free whelp clib "free Functions"
_freect whelp clib _freect
freopen whelp clib "freopen, _wfreopen"
frexp whelp clib frexp
fscanf whelp clib "fscanf, fwscanf"
fseek whelp clib fseek
fsetpos whelp clib fsetpos
_fsopen whelp clib "_fsopen, _wfsopen"
fstat whelp clib "fstat, _fstat, _fstati64, _wfstat, _wfstati64"
_fstat whelp clib "fstat, _fstat, _fstati64, _wfstat, _wfstati64"
_fstati64 whelp clib "fstat, _fstat, _fstati64, _wfstat, _wfstati64"
_fstrcat whelp clib "strcat, _fstrcat, wcscat, _mbscat, _fmbscat"
_fstrchr whelp clib "strchr, _fstrchr, wcschr, _mbschr, _fmbschr"
_fstrcmp whelp clib "strcmp, _fstrcmp, wcscmp, _mbscmp, _fmbscmp"
_fstrcpy whelp clib "strcpy, _fstrcpy, wcscpy, _mbscpy, _fmbscpy"
_fstrcspn whelp clib "strcspn, _fstrcspn, wcscspn, _mbscspn, _fmbscspn"
_fstrdup whelp clib "strdup, _strdup, _fstrdup, _wcsdup, _mbsdup, _fmbsdup"
_fstricmp whelp clib "stricmp, _stricmp, _fstricmp, _wcsicmp, _mbsicmp, _fmbsicmp"
_fstrlen whelp clib "strlen, _fstrlen, wcslen, _mbslen, _fmbslen"
_fstrlwr whelp clib "strlwr, _strlwr, _fstrlwr, _wcslwr, _mbslwr, _fmbslwr"
_fstrncat whelp clib "strncat, _fstrncat, wcsncat, _mbsncat, _fmbsncat"
_fstrncmp whelp clib "strncmp, _fstrncmp, wcsncmp, _mbsncmp, _fmbsncmp"
_fstrncpy whelp clib "strncpy, _fstrncpy, wcsncpy, _mbsncpy, _fmbsncpy"
_fstrnicmp whelp clib "strnicmp, _strnicmp, _fstrnicmp, _wcsnicmp, _mbsnicmp, _fmbsnicmp"
_fstrnset whelp clib "strnset, _strnset, _fstrnset, _wcsnset, _mbsnset, _fmbsnset"
_fstrpbrk whelp clib "strpbrk, _fstrpbrk, wcspbrk, _mbspbrk, _fmbspbrk"
_fstrrchr whelp clib "strrchr, _fstrrchr, wcsrchr, _mbsrchr, _fmbsrchr"
_fstrrev whelp clib "strrev, _strrev, _fstrrev, _wcsrev, _mbsrev, _fmbsrev"
_fstrset whelp clib "strset, _strset, _fstrset, _wcsset, _mbsset, _fmbsset"
_fstrspn whelp clib "strspn, _fstrspn, wcsspn, _mbsspn, _fmbsspn"
_fstrspnp whelp clib "strspnp, _strspnp, _fstrspnp, _wcsspnp, _mbsspnp, _fmbsspnp"
_fstrstr whelp clib "strstr, _fstrstr, wcsstr, _mbsstr, _fmbsstr"
_fstrtok whelp clib "strtok, _fstrtok, wcstok, _mbstok, _fmbstok"
_fstrupr whelp clib "strupr, _strupr, _fstrupr, _wcsupr, _mbsupr, _fmbsupr"
fsync whelp clib fsync
ftell whelp clib ftell
ftime whelp clib ftime
_fullpath whelp clib "_fullpath, _wfullpath"
_fwcrtomb whelp clib "wcrtomb, _fwcrtomb"
_fwcsrtombs whelp clib "wcsrtombs, _fwcsrtombs"
_fwcstombs whelp clib "wcstombs, _fwcstombs"
_fwctomb whelp clib "wctomb, _fwctomb"
fwprintf whelp clib "fprintf, fwprintf"
fwrite whelp clib fwrite
fwscanf whelp clib "fscanf, fwscanf"
gcvt whelp clib "gcvt, _gcvt, _wgcvt"
_gcvt whelp clib "gcvt, _gcvt, _wgcvt"
_get_osfhandle whelp clib _get_osfhandle
_getactivepage whelp clib _getactivepage
_getarcinfo whelp clib _getarcinfo
_getbkcolor whelp clib _getbkcolor
getc whelp clib "getc, getwc"
getch whelp clib getch
getchar whelp clib "getchar, getwchar"
getche whelp clib getche
_getcliprgn whelp clib _getcliprgn
getcmd whelp clib getcmd
_getcolor whelp clib _getcolor
_getcurrentposition_w whelp clib "_getcurrentposition, _getcurrentposition_w"
_getcurrentposition whelp clib "_getcurrentposition, _getcurrentposition_w"
getcwd whelp clib "getcwd, _wgetcwd"
_getdcwd whelp clib "_getdcwd, _wgetdcwd"
_getdiskfree whelp clib _getdiskfree
_getdrive whelp clib _getdrive
getenv whelp clib "getenv, _wgetenv"
_getfillmask whelp clib _getfillmask
_getfontinfo whelp clib _getfontinfo
_getgtextextent whelp clib _getgtextextent
_getgtextvector whelp clib _getgtextvector
_getimage_w whelp clib "_getimage, _getimage_w, _getimage_wxy"
_getimage_wxy whelp clib "_getimage, _getimage_w, _getimage_wxy"
_getimage whelp clib "_getimage, _getimage_w, _getimage_wxy"
_getlinestyle whelp clib _getlinestyle
_getmbcp whelp clib _getmbcp
_getphyscoord whelp clib _getphyscoord
getpid whelp clib getpid
_getpixel_w whelp clib "_getpixel, _getpixel_w"
_getpixel whelp clib "_getpixel, _getpixel_w"
_getplotaction whelp clib _getplotaction
gets whelp clib "gets, _getws"
_gettextcolor whelp clib _gettextcolor
_gettextcursor whelp clib _gettextcursor
_gettextextent whelp clib _gettextextent
_gettextposition whelp clib _gettextposition
_gettextsettings whelp clib _gettextsettings
_gettextwindow whelp clib _gettextwindow
_getvideoconfig whelp clib _getvideoconfig
_getviewcoord_w whelp clib "_getviewcoord, _getviewcoord_w, _getviewcoord_wxy"
_getviewcoord_wxy whelp clib "_getviewcoord, _getviewcoord_w, _getviewcoord_wxy"
_getviewcoord whelp clib "_getviewcoord, _getviewcoord_w, _getviewcoord_wxy"
_getvisualpage whelp clib _getvisualpage
_getw whelp clib _getw
getwc whelp clib "getc, getwc"
getwchar whelp clib "getchar, getwchar"
_getwindowcoord whelp clib _getwindowcoord
_getws whelp clib "gets, _getws"
gmtime whelp clib "gmtime Functions"
_gmtime whelp clib "gmtime Functions"
_grow_handles whelp clib _grow_handles
_grstatus whelp clib _grstatus
_grtext_w whelp clib "_grtext, _grtext_w"
_grtext whelp clib "_grtext, _grtext_w"
halloc whelp clib halloc
_harderr whelp clib "_harderr, _hardresume, _hardretn"
_hardresume whelp clib "_harderr, _hardresume, _hardretn"
_hardretn whelp clib "_harderr, _hardresume, _hardretn"
_hdopen whelp clib _hdopen
_heapchk whelp clib "_heapchk Functions"
_heapenable whelp clib _heapenable
_heapgrow whelp clib "_heapgrow Functions"
_heapmin whelp clib "_heapmin Functions"
_heapset whelp clib "_heapset Functions"
_heapshrink whelp clib "_heapshrink Functions"
_heapwalk whelp clib "_heapwalk Functions"
hfree whelp clib hfree
hypot whelp clib hypot
_imagesize_w whelp clib "_imagesize, _imagesize_w, _imagesize_wxy"
_imagesize_wxy whelp clib "_imagesize, _imagesize_w, _imagesize_wxy"
_imagesize whelp clib "_imagesize, _imagesize_w, _imagesize_wxy"
inp whelp clib inp
inpd whelp clib inpd
inpw whelp clib inpw
int386 whelp clib int386
int386x whelp clib int386x
int86 whelp clib int86
int86x whelp clib int86x
intdos whelp clib intdos
intdosx whelp clib intdosx
intr whelp clib intr
isalnum whelp clib "isalnum, iswalnum"
isalpha whelp clib "isalpha, iswalpha"
isascii whelp clib "isascii, __isascii, iswascii"
__isascii whelp clib "isascii, __isascii, iswascii"
isatty whelp clib isatty
iscntrl whelp clib "iscntrl, iswcntrl"
__iscsym whelp clib __iscsym
__iscsymf whelp clib __iscsymf
isdigit whelp clib "isdigit, iswdigit"
isgraph whelp clib "isgraph, iswgraph"
isleadbyte whelp clib isleadbyte
islower whelp clib "islower, iswlower"
_ismbbalnum whelp clib _ismbbalnum
_ismbbalpha whelp clib _ismbbalpha
_ismbbgraph whelp clib _ismbbgraph
_ismbbkalnum whelp clib _ismbbkalnum
_ismbbkalpha whelp clib _ismbbkalpha
_ismbbkana whelp clib _ismbbkana
_ismbbkprint whelp clib _ismbbkprint
_ismbbkpunct whelp clib _ismbbkpunct
_ismbblead whelp clib _ismbblead
_ismbbprint whelp clib _ismbbprint
_ismbbpunct whelp clib _ismbbpunct
_ismbbtrail whelp clib _ismbbtrail
_ismbcalnum whelp clib _ismbcalnum
_ismbcalpha whelp clib _ismbcalpha
_ismbccntrl whelp clib _ismbccntrl
_ismbcdigit whelp clib _ismbcdigit
_ismbcgraph whelp clib _ismbcgraph
_ismbchira whelp clib _ismbchira
_ismbckata whelp clib _ismbckata
_ismbcl0 whelp clib _ismbcl0
_ismbcl1 whelp clib _ismbcl1
_ismbcl2 whelp clib _ismbcl2
_ismbclegal whelp clib _ismbclegal
_ismbclower whelp clib _ismbclower
_ismbcprint whelp clib _ismbcprint
_ismbcpunct whelp clib _ismbcpunct
_ismbcspace whelp clib _ismbcspace
_ismbcsymbol whelp clib _ismbcsymbol
_ismbcupper whelp clib _ismbcupper
_ismbcxdigit whelp clib _ismbcxdigit
isprint whelp clib "isprint, iswprint"
ispunct whelp clib "ispunct, iswpunct"
isspace whelp clib "isspace, iswspace"
isupper whelp clib "isupper, iswupper"
iswalnum whelp clib "isalnum, iswalnum"
iswalpha whelp clib "isalpha, iswalpha"
iswascii whelp clib "isascii, __isascii, iswascii"
iswcntrl whelp clib "iscntrl, iswcntrl"
iswctype whelp clib iswctype
iswdigit whelp clib "isdigit, iswdigit"
iswgraph whelp clib "isgraph, iswgraph"
iswlower whelp clib "islower, iswlower"
iswprint whelp clib "isprint, iswprint"
iswpunct whelp clib "ispunct, iswpunct"
iswspace whelp clib "isspace, iswspace"
iswupper whelp clib "isupper, iswupper"
iswxdigit whelp clib "isxdigit, iswxdigit"
isxdigit whelp clib "isxdigit, iswxdigit"
itoa whelp clib "itoa, _itoa, _itow"
_itoa whelp clib "itoa, _itoa, _itow"
_itow whelp clib "itoa, _itoa, _itow"
j0 whelp clib "bessel Functions"
j1 whelp clib "bessel Functions"
jn whelp clib "bessel Functions"
kbhit whelp clib kbhit
labs whelp clib labs
ldexp whelp clib ldexp
ldiv whelp clib ldiv
lfind whelp clib lfind
_lineto_w whelp clib "_lineto, _lineto_w"
_lineto whelp clib "_lineto, _lineto_w"
localeconv whelp clib localeconv
localtime whelp clib "localtime Functions"
_localtime whelp clib "localtime Functions"
lock whelp clib lock
locking whelp clib "locking, _locking"
_locking whelp clib "locking, _locking"
log whelp clib log
log10 whelp clib log10
log2 whelp clib log2
longjmp whelp clib longjmp
_lrotl whelp clib _lrotl
_lrotr whelp clib _lrotr
lsearch whelp clib lsearch
lseek whelp clib "lseek, _lseek, _lseeki64"
_lseek whelp clib "lseek, _lseek, _lseeki64"
_lseeki64 whelp clib "lseek, _lseek, _lseeki64"
ltoa whelp clib "ltoa, _ltoa, _ltow"
_ltoa whelp clib "ltoa, _ltoa, _ltow"
_ltow whelp clib "ltoa, _ltoa, _ltow"
_m_empty whelp clib _m_empty
_m_from_int whelp clib _m_from_int
_m_packssdw whelp clib _m_packssdw
_m_packsswb whelp clib _m_packsswb
_m_packuswb whelp clib _m_packuswb
_m_paddb whelp clib _m_paddb
_m_paddd whelp clib _m_paddd
_m_paddsb whelp clib _m_paddsb
_m_paddsw whelp clib _m_paddsw
_m_paddusb whelp clib _m_paddusb
_m_paddusw whelp clib _m_paddusw
_m_paddw whelp clib _m_paddw
_m_pand whelp clib _m_pand
_m_pandn whelp clib _m_pandn
_m_pcmpeqb whelp clib _m_pcmpeqb
_m_pcmpeqd whelp clib _m_pcmpeqd
_m_pcmpeqw whelp clib _m_pcmpeqw
_m_pcmpgtb whelp clib _m_pcmpgtb
_m_pcmpgtd whelp clib _m_pcmpgtd
_m_pcmpgtw whelp clib _m_pcmpgtw
_m_pmaddwd whelp clib _m_pmaddwd
_m_pmulhw whelp clib _m_pmulhw
_m_pmullw whelp clib _m_pmullw
_m_por whelp clib _m_por
_m_pslld whelp clib _m_pslld
_m_pslldi whelp clib _m_pslldi
_m_psllq whelp clib _m_psllq
_m_psllqi whelp clib _m_psllqi
_m_psllw whelp clib _m_psllw
_m_psllwi whelp clib _m_psllwi
_m_psrad whelp clib _m_psrad
_m_psradi whelp clib _m_psradi
_m_psraw whelp clib _m_psraw
_m_psrawi whelp clib _m_psrawi
_m_psrld whelp clib _m_psrld
_m_psrldi whelp clib _m_psrldi
_m_psrlq whelp clib _m_psrlq
_m_psrlqi whelp clib _m_psrlqi
_m_psrlw whelp clib _m_psrlw
_m_psrlwi whelp clib _m_psrlwi
_m_psubb whelp clib _m_psubb
_m_psubd whelp clib _m_psubd
_m_psubsb whelp clib _m_psubsb
_m_psubsw whelp clib _m_psubsw
_m_psubusb whelp clib _m_psubusb
_m_psubusw whelp clib _m_psubusw
_m_psubw whelp clib _m_psubw
_m_punpckhbw whelp clib _m_punpckhbw
_m_punpckhdq whelp clib _m_punpckhdq
_m_punpckhwd whelp clib _m_punpckhwd
_m_punpcklbw whelp clib _m_punpcklbw
_m_punpckldq whelp clib _m_punpckldq
_m_punpcklwd whelp clib _m_punpcklwd
_m_pxor whelp clib _m_pxor
_m_to_int whelp clib _m_to_int
main whelp clib "main, wmain, WinMain, wWinMain"
_makepath whelp clib "_makepath, _wmakepath"
malloc whelp clib "malloc Functions"
matherr whelp clib matherr
max whelp clib max
_MaxThreads whelp clib "Global Data"
_mbbtombc whelp clib _mbbtombc
_mbbtype whelp clib _mbbtype
_mbccmp whelp clib "_mbccmp, _fmbccmp"
_mbccpy whelp clib "_mbccpy, _fmbccpy"
_mbcicmp whelp clib "_mbcicmp, _fmbcicmp"
_mbcjistojms whelp clib _mbcjistojms
_mbcjmstojis whelp clib _mbcjmstojis
_mbclen whelp clib "_mbclen, _fmbclen"
_mbctohira whelp clib _mbctohira
_mbctokata whelp clib _mbctokata
_mbctolower whelp clib _mbctolower
_mbctombb whelp clib _mbctombb
_mbctoupper whelp clib _mbctoupper
_mbgetcode whelp clib "_mbgetcode, _fmbgetcode"
mblen whelp clib "mblen, _fmblen"
_mbputchar whelp clib "_mbputchar, _fmbputchar"
mbrlen whelp clib "mbrlen, _fmbrlen"
mbrtowc whelp clib "mbrtowc, _fmbrtowc"
_mbsbtype whelp clib "_mbsbtype, _fmbsbtype"
_mbscat whelp clib "strcat, _fstrcat, wcscat, _mbscat, _fmbscat"
_mbschr whelp clib "strchr, _fstrchr, wcschr, _mbschr, _fmbschr"
_mbscmp whelp clib "strcmp, _fstrcmp, wcscmp, _mbscmp, _fmbscmp"
_mbscoll whelp clib "strcoll, wcscoll, _mbscoll"
_mbscpy whelp clib "strcpy, _fstrcpy, wcscpy, _mbscpy, _fmbscpy"
_mbscspn whelp clib "strcspn, _fstrcspn, wcscspn, _mbscspn, _fmbscspn"
_mbsdec whelp clib "_strdec, _wcsdec, _mbsdec, _fmbsdec"
_mbsdup whelp clib "strdup, _strdup, _fstrdup, _wcsdup, _mbsdup, _fmbsdup"
_mbsicmp whelp clib "stricmp, _stricmp, _fstricmp, _wcsicmp, _mbsicmp, _fmbsicmp"
_mbsicoll whelp clib "_stricoll, _wcsicoll, _mbsicoll"
_mbsinc whelp clib "_strinc, _wcsinc, _mbsinc, _fmbsinc"
_mbslen whelp clib "strlen, _fstrlen, wcslen, _mbslen, _fmbslen"
_mbslwr whelp clib "strlwr, _strlwr, _fstrlwr, _wcslwr, _mbslwr, _fmbslwr"
_mbsnbcat whelp clib "_mbsnbcat, _fmbsnbcat"
_mbsnbcmp whelp clib "_mbsnbcmp, _fmbsnbcmp"
_mbsnbcnt whelp clib "_mbsnbcnt, _fmbsnbcnt, _strncnt, _wcsncnt"
_mbsnbcpy whelp clib "_mbsnbcpy, _fmbsnbcpy"
_mbsnbicmp whelp clib "_mbsnbicmp, _fmbsnbicmp"
_mbsnbset whelp clib "_mbsnbset, _fmbsnbset"
_mbsncat whelp clib "strncat, _fstrncat, wcsncat, _mbsncat, _fmbsncat"
_mbsnccnt whelp clib "_mbsnccnt, _fmbsnccnt, _strncnt, _wcsncnt"
_mbsncmp whelp clib "strncmp, _fstrncmp, wcsncmp, _mbsncmp, _fmbsncmp"
_mbsncoll whelp clib "_strncoll, _wcsncoll, _mbsncoll"
_mbsncpy whelp clib "strncpy, _fstrncpy, wcsncpy, _mbsncpy, _fmbsncpy"
_mbsnextc whelp clib "_mbsnextc, _fmbsnextc, _strnextc, _wcsnextc"
_mbsnicmp whelp clib "strnicmp, _strnicmp, _fstrnicmp, _wcsnicmp, _mbsnicmp, _fmbsnicmp"
_mbsnicoll whelp clib "_strnicoll, _wcsnicoll, _mbsnicoll"
_mbsninc whelp clib "_strninc, _wcsninc, _mbsninc, _fmbsninc"
_mbsnset whelp clib "strnset, _strnset, _fstrnset, _wcsnset, _mbsnset, _fmbsnset"
_mbspbrk whelp clib "strpbrk, _fstrpbrk, wcspbrk, _mbspbrk, _fmbspbrk"
_mbsrchr whelp clib "strrchr, _fstrrchr, wcsrchr, _mbsrchr, _fmbsrchr"
_mbsrev whelp clib "strrev, _strrev, _fstrrev, _wcsrev, _mbsrev, _fmbsrev"
mbsrtowcs whelp clib "mbsrtowcs, _fmbsrtowcs"
_mbsset whelp clib "strset, _strset, _fstrset, _wcsset, _mbsset, _fmbsset"
_mbsspn whelp clib "strspn, _fstrspn, wcsspn, _mbsspn, _fmbsspn"
_mbsspnp whelp clib "strspnp, _strspnp, _fstrspnp, _wcsspnp, _mbsspnp, _fmbsspnp"
_mbsstr whelp clib "strstr, _fstrstr, wcsstr, _mbsstr, _fmbsstr"
_mbstok whelp clib "strtok, _fstrtok, wcstok, _mbstok, _fmbstok"
mbstowcs whelp clib "mbstowcs, _fmbstowcs"
_mbsupr whelp clib "strupr, _strupr, _fstrupr, _wcsupr, _mbsupr, _fmbsupr"
_mbterm whelp clib "_mbterm, _fmbterm"
mbtowc whelp clib "mbtowc, _fmbtowc"
_mbvtop whelp clib "_mbvtop, _fmbvtop"
_memavl whelp clib _memavl
memccpy whelp clib "memccpy, _fmemccpy"
memchr whelp clib "memchr, _fmemchr"
memcmp whelp clib "memcmp, _fmemcmp"
memcpy whelp clib "memcpy, _fmemcpy"
memicmp whelp clib "memicmp, _memicmp, _fmemicmp"
_memicmp whelp clib "memicmp, _memicmp, _fmemicmp"
_memmax whelp clib _memmax
memmove whelp clib "memmove, _fmemmove"
memset whelp clib "memset, _fmemset"
min whelp clib min
_minreal_ whelp clib "Global Data"
mkdir whelp clib "mkdir, _mkdir, _wmkdir"
_mkdir whelp clib "mkdir, _mkdir, _wmkdir"
_MKFP whelp clib MK_FP
_mktemp whelp clib "_mktemp, _wmktemp"
mktime whelp clib mktime
modf whelp clib modf
movedata whelp clib movedata
_moveto_w whelp clib "_moveto, _moveto_w"
_moveto whelp clib "_moveto, _moveto_w"
_msize whelp clib "_msize Functions"
_ncalloc whelp clib "calloc Functions"
_nexpand whelp clib "_expand Functions"
_nfree whelp clib "free Functions"
_nheapchk whelp clib "_heapchk Functions"
_nheapgrow whelp clib "_heapgrow Functions"
_nheapmin whelp clib "_heapmin Functions"
_nheapset whelp clib "_heapset Functions"
_nheapshrink whelp clib "_heapshrink Functions"
_nheapwalk whelp clib "_heapwalk Functions"
_nmalloc whelp clib "malloc Functions"
_nmsize whelp clib "_msize Functions"
nosound whelp clib nosound
_nrealloc whelp clib "realloc Functions"
offsetof whelp clib offsetof
onexit whelp clib onexit
open whelp clib "open, _open, _wopen"
_open_osfhandle whelp clib _open_osfhandle
_open whelp clib "open, _open, _wopen"
opendir whelp clib "opendir, _wopendir"
_os_handle whelp clib _os_handle
_osbuild whelp clib "Global Data"
_osmajor whelp clib "Global Data"
_osminor whelp clib "Global Data"
_osmode whelp clib "Global Data"
_osver whelp clib "Global Data"
_outgtext whelp clib _outgtext
_outmem whelp clib _outmem
outp whelp clib outp
outpd whelp clib outpd
outpw whelp clib outpw
_outtext whelp clib _outtext
_pclose whelp clib _pclose
perror whelp clib "perror, _wperror"
_pg_analyzechart whelp clib "_pg_analyzechart, _pg_analyzechartms"
_pg_analyzechartms whelp clib "_pg_analyzechart, _pg_analyzechartms"
_pg_analyzepie whelp clib _pg_analyzepie
_pg_analyzescatter whelp clib "_pg_analyzescatter, _pg_analyzescatterms"
_pg_analyzescatterms whelp clib "_pg_analyzescatter, _pg_analyzescatterms"
_pg_chart whelp clib "_pg_chart, _pg_chartms"
_pg_chartms whelp clib "_pg_chart, _pg_chartms"
_pg_chartpie whelp clib _pg_chartpie
_pg_chartscatter whelp clib "_pg_chartscatter, _pg_chartscatterms"
_pg_chartscatterms whelp clib "_pg_chartscatter, _pg_chartscatterms"
_pg_defaultchart whelp clib _pg_defaultchart
_pg_getchardef whelp clib _pg_getchardef
_pg_getpalette whelp clib _pg_getpalette
_pg_getstyleset whelp clib _pg_getstyleset
_pg_hlabelchart whelp clib _pg_hlabelchart
_pg_initchart whelp clib _pg_initchart
_pg_resetpalette whelp clib _pg_resetpalette
_pg_resetstyleset whelp clib _pg_resetstyleset
_pg_setchardef whelp clib _pg_setchardef
_pg_setpalette whelp clib _pg_setpalette
_pg_setstyleset whelp clib _pg_setstyleset
_pg_vlabelchart whelp clib _pg_vlabelchart
_pie_w whelp clib "_pie, _pie_w, _pie_wxy"
_pie_wxy whelp clib "_pie, _pie_w, _pie_wxy"
_pie whelp clib "_pie, _pie_w, _pie_wxy"
_pipe whelp clib _pipe
_polygon_w whelp clib "_polygon, _polygon_w, _polygon_wxy"
_polygon_wxy whelp clib "_polygon, _polygon_w, _polygon_wxy"
_polygon whelp clib "_polygon, _polygon_w, _polygon_wxy"
_popen whelp clib "_popen, _wpopen"
pow whelp clib pow
printf whelp clib "printf, wprintf"
_psp whelp clib "Global Data"
putc whelp clib "putc, putwc"
putch whelp clib putch
putchar whelp clib "putchar, putwchar"
putenv whelp clib "putenv, _putenv, _wputenv"
_putenv whelp clib "putenv, _putenv, _wputenv"
_putimage_w whelp clib "_putimage, _putimage_w"
_putimage whelp clib "_putimage, _putimage_w"
puts whelp clib "puts, _putws"
_putw whelp clib _putw
putwc whelp clib "putc, putwc"
putwchar whelp clib "putchar, putwchar"
_putws whelp clib "puts, _putws"
qsort whelp clib qsort
raise whelp clib raise
rand whelp clib rand
read whelp clib read
readdir whelp clib "readdir, _wreaddir"
realloc whelp clib "realloc Functions"
_rectangle_w whelp clib "_rectangle, _rectangle_w, _rectangle_wxy"
_rectangle_wxy whelp clib "_rectangle, _rectangle_w, _rectangle_wxy"
_rectangle whelp clib "_rectangle, _rectangle_w, _rectangle_wxy"
_registerfonts whelp clib _registerfonts
_remapallpalette whelp clib _remapallpalette
_remappalette whelp clib _remappalette
remove whelp clib "remove, _wremove"
rename whelp clib "rename, _wrename"
rewind whelp clib rewind
rewinddir whelp clib "rewinddir, _wrewinddir"
rmdir whelp clib "rmdir, _wrmdir"
_rotl whelp clib _rotl
_rotr whelp clib _rotr
sbrk whelp clib sbrk
scanf whelp clib "scanf, wscanf"
_scrolltextwindow whelp clib _scrolltextwindow
_searchenv whelp clib "_searchenv, _wsearchenv"
segread whelp clib segread
_selectpalette whelp clib _selectpalette
_set_matherr whelp clib _set_matherr
_set_new_handler whelp clib "set_new_handler, _set_new_handler"
_setactivepage whelp clib _setactivepage
_setbkcolor whelp clib _setbkcolor
setbuf whelp clib setbuf
_setcharsize_w whelp clib "_setcharsize, _setcharsize_w"
_setcharsize whelp clib "_setcharsize, _setcharsize_w"
_setcharspacing_w whelp clib "_setcharspacing, _setcharspacing_w"
_setcharspacing whelp clib "_setcharspacing, _setcharspacing_w"
_setcliprgn whelp clib _setcliprgn
_setcolor whelp clib _setcolor
setenv whelp clib "setenv, _setenv, _wsetenv"
_setenv whelp clib "setenv, _setenv, _wsetenv"
_setfillmask whelp clib _setfillmask
_setfont whelp clib _setfont
_setgtextvector whelp clib _setgtextvector
setjmp whelp clib setjmp
_setlinestyle whelp clib _setlinestyle
setlocale whelp clib "setlocale, _wsetlocale"
_setmbcp whelp clib _setmbcp
setmode whelp clib setmode
_setnew_handler whelp clib "set_new_handler, _set_new_handler"
_setpixel_w whelp clib "_setpixel, _setpixel_w"
_setpixel whelp clib "_setpixel, _setpixel_w"
_setplotaction whelp clib _setplotaction
_settextalign whelp clib _settextalign
_settextcolor whelp clib _settextcolor
_settextcursor whelp clib _settextcursor
_settextorient whelp clib _settextorient
_settextpath whelp clib _settextpath
_settextposition whelp clib _settextposition
_settextrows whelp clib _settextrows
_settextwindow whelp clib _settextwindow
setvbuf whelp clib setvbuf
_setvideomode whelp clib _setvideomode
_setvideomoderows whelp clib _setvideomoderows
_setvieworg whelp clib _setvieworg
_setviewport whelp clib _setviewport
_setvisualpage whelp clib _setvisualpage
_setwindow whelp clib _setwindow
signal whelp clib signal
sin whelp clib sin
sinh whelp clib sinh
sisinit whelp clib sisinit
sleep whelp clib sleep
snprintf whelp clib "snprintf, snwprintf"
_snprintf whelp clib "_snprintf, _snwprintf"
snwprintf whelp clib "snprintf, snwprintf"
_snwprintf whelp clib "_snprintf, _snwprintf"
sopen whelp clib "sopen, _wsopen"
sound whelp clib sound
spawnl whelp clib "spawn Functions"
spawnle whelp clib "spawn Functions"
spawnlp whelp clib "spawn Functions"
spawnlpe whelp clib "spawn Functions"
spawnv whelp clib "spawn Functions"
spawnve whelp clib "spawn Functions"
spawnvp whelp clib "spawn Functions"
spawnvpe whelp clib "spawn Functions"
_splitpath2 whelp clib "_splitpath2, _wsplitpath2"
_splitpath whelp clib "_splitpath, _wsplitpath"
sprintf whelp clib "sprintf, swprintf"
sqrt whelp clib sqrt
srand whelp clib srand
sscanf whelp clib "sscanf, swscanf"
stackavail whelp clib stackavail
_stacksize whelp clib "Global Data"
stat whelp clib "stat, _stat, _stati64, _wstat, _wstati64"
_stat whelp clib "stat, _stat, _stati64, _wstat, _wstati64"
_stati64 whelp clib "stat, _stat, _stati64, _wstat, _wstati64"
_status87 whelp clib _status87
stdaux whelp clib "Global Data"
stderr whelp clib "Global Data"
stdin whelp clib "Global Data"
stdout whelp clib "Global Data"
stdprn whelp clib "Global Data"
strcat whelp clib "strcat, _fstrcat, wcscat, _mbscat, _fmbscat"
strchr whelp clib "strchr, _fstrchr, wcschr, _mbschr, _fmbschr"
strcmp whelp clib "strcmp, _fstrcmp, wcscmp, _mbscmp, _fmbscmp"
strcmpi whelp clib "strcmpi, wcscmpi"
strcoll whelp clib "strcoll, wcscoll, _mbscoll"
strcpy whelp clib "strcpy, _fstrcpy, wcscpy, _mbscpy, _fmbscpy"
strcspn whelp clib "strcspn, _fstrcspn, wcscspn, _mbscspn, _fmbscspn"
_strdate whelp clib "_strdate, _wstrdate"
_strdec whelp clib "_strdec, _wcsdec, _mbsdec, _fmbsdec"
strdup whelp clib "strdup, _strdup, _fstrdup, _wcsdup, _mbsdup, _fmbsdup"
_strdup whelp clib "strdup, _strdup, _fstrdup, _wcsdup, _mbsdup, _fmbsdup"
strerror whelp clib "strerror, wcserror"
strftime whelp clib "strftime, wcsftime, _wstrftime_ms"
stricmp whelp clib "stricmp, _stricmp, _fstricmp, _wcsicmp, _mbsicmp, _fmbsicmp"
_stricmp whelp clib "stricmp, _stricmp, _fstricmp, _wcsicmp, _mbsicmp, _fmbsicmp"
_stricoll whelp clib "_stricoll, _wcsicoll, _mbsicoll"
_strinc whelp clib "_strinc, _wcsinc, _mbsinc, _fmbsinc"
strlen whelp clib "strlen, _fstrlen, wcslen, _mbslen, _fmbslen"
strlwr whelp clib "strlwr, _strlwr, _fstrlwr, _wcslwr, _mbslwr, _fmbslwr"
_strlwr whelp clib "strlwr, _strlwr, _fstrlwr, _wcslwr, _mbslwr, _fmbslwr"
strncat whelp clib "strncat, _fstrncat, wcsncat, _mbsncat, _fmbsncat"
strncmp whelp clib "strncmp, _fstrncmp, wcsncmp, _mbsncmp, _fmbsncmp"
_strncnt whelp clib "_mbsnccnt, _fmbsnccnt, _strncnt, _wcsncnt"
_strncoll whelp clib "_strncoll, _wcsncoll, _mbsncoll"
strncpy whelp clib "strncpy, _fstrncpy, wcsncpy, _mbsncpy, _fmbsncpy"
_strnextc whelp clib "_mbsnextc, _fmbsnextc, _strnextc, _wcsnextc"
strnicmp whelp clib "strnicmp, _strnicmp, _fstrnicmp, _wcsnicmp, _mbsnicmp, _fmbsnicmp"
_strnicmp whelp clib "strnicmp, _strnicmp, _fstrnicmp, _wcsnicmp, _mbsnicmp, _fmbsnicmp"
_strnicoll whelp clib "_strnicoll, _wcsnicoll, _mbsnicoll"
_strninc whelp clib "_strninc, _wcsninc, _mbsninc, _fmbsninc"
strnset whelp clib "strnset, _strnset, _fstrnset, _wcsnset, _mbsnset, _fmbsnset"
_strnset whelp clib "strnset, _strnset, _fstrnset, _wcsnset, _mbsnset, _fmbsnset"
strpbrk whelp clib "strpbrk, _fstrpbrk, wcspbrk, _mbspbrk, _fmbspbrk"
strrchr whelp clib "strrchr, _fstrrchr, wcsrchr, _mbsrchr, _fmbsrchr"
strrev whelp clib "strrev, _strrev, _fstrrev, _wcsrev, _mbsrev, _fmbsrev"
_strrev whelp clib "strrev, _strrev, _fstrrev, _wcsrev, _mbsrev, _fmbsrev"
strset whelp clib "strset, _strset, _fstrset, _wcsset, _mbsset, _fmbsset"
_strset whelp clib "strset, _strset, _fstrset, _wcsset, _mbsset, _fmbsset"
strspn whelp clib "strspn, _fstrspn, wcsspn, _mbsspn, _fmbsspn"
strspnp whelp clib "strspnp, _strspnp, _fstrspnp, _wcsspnp, _mbsspnp, _fmbsspnp"
_strspnp whelp clib "strspnp, _strspnp, _fstrspnp, _wcsspnp, _mbsspnp, _fmbsspnp"
strstr whelp clib "strstr, _fstrstr, wcsstr, _mbsstr, _fmbsstr"
_strtime whelp clib "_strtime, _wstrtime"
strtod whelp clib "strtod, wcstod"
strtok whelp clib "strtok, _fstrtok, wcstok, _mbstok, _fmbstok"
strtol whelp clib "strtol, wcstol"
strtoul whelp clib "strtoul, wcstoul"
strupr whelp clib "strupr, _strupr, _fstrupr, _wcsupr, _mbsupr, _fmbsupr"
_strupr whelp clib "strupr, _strupr, _fstrupr, _wcsupr, _mbsupr, _fmbsupr"
strxfrm whelp clib "strxfrm, wcsxfrm"
swab whelp clib swab
swprintf whelp clib "sprintf, swprintf"
swscanf whelp clib "sscanf, swscanf"
_syserrlist whelp clib "Global Data"
_sysnerr whelp clib "Global Data"
system whelp clib "system, _wsystem"
tan whelp clib tan
tanh whelp clib tanh
tell whelp clib tell
_tempnam whelp clib "_tempnam, _wtempnam"
_threadid whelp clib "Global Data"
time whelp clib time
timezone whelp clib "Global Data"
tmpfile whelp clib tmpfile
tmpnam whelp clib "tmpnam, _wtmpnam"
tolower whelp clib "tolower, _tolower, towlower"
_tolower whelp clib "tolower, _tolower, towlower"
toupper whelp clib "toupper, _toupper, towupper"
_toupper whelp clib "toupper, _toupper, towupper"
towlower whelp clib "tolower, _tolower, towlower"
towupper whelp clib "toupper, _toupper, towupper"
tzname whelp clib "Global Data"
tzset whelp clib tzset
ultoa whelp clib "ultoa, _ultoa, _ultow"
_ultoa whelp clib "ultoa, _ultoa, _ultow"
_ultow whelp clib "ultoa, _ultoa, _ultow"
umask whelp clib umask
ungetc whelp clib "ungetc, ungetwc"
ungetch whelp clib ungetch
ungetwc whelp clib "ungetc, ungetwc"
unlink whelp clib "unlink, _wunlink"
unlock whelp clib unlock
_unregisterfonts whelp clib _unregisterfonts
utime whelp clib "utime, _utime, _wutime"
_utime whelp clib "utime, _utime, _wutime"
utoa whelp clib "utoa, _utoa, _utow"
_utoa whelp clib "utoa, _utoa, _utow"
_utow whelp clib "utoa, _utoa, _utow"
va_arg whelp clib va_arg
va_end whelp clib va_end
va_start whelp clib va_start
_vbprintf whelp clib "_vbprintf, _vbwprintf"
_vbwprintf whelp clib "_vbprintf, _vbwprintf"
vcprintf whelp clib vcprintf
vcscanf whelp clib vcscanf
vfprintf whelp clib "vfprintf, vfwprintf"
vfscanf whelp clib "vfscanf, vfwscanf"
vfwprintf whelp clib "vfprintf, vfwprintf"
vfwscanf whelp clib "vfscanf, vfwscanf"
vprintf whelp clib "vprintf, vwprintf"
vscanf whelp clib "vscanf, vwscanf"
vsnprintf whelp clib "vsnprintf, vsnwprintf"
_vsnprintf whelp clib "_vsnprintf, _vsnwprintf"
vsnwprintf whelp clib "vsnprintf, vsnwprintf"
_vsnwprintf whelp clib "_vsnprintf, _vsnwprintf"
vsprintf whelp clib "vsprintf, vswprintf"
vsscanf whelp clib "vsscanf, vswscanf"
vswprintf whelp clib "vsprintf, vswprintf"
vswscanf whelp clib "vsscanf, vswscanf"
vwprintf whelp clib "vprintf, vwprintf"
vwscanf whelp clib "vscanf, vwscanf"
_waccess whelp clib "access, _access, _waccess"
wait whelp clib wait
__wargc whelp clib "Global Data"
__wargv whelp clib "Global Data"
_wchdir whelp clib "chdir, _wchdir"
_wchmod whelp clib "chmod, _wchmod"
_wclosedir whelp clib "closedir, _wclosedir"
_wcreat whelp clib "creat, _wcreat"
wcrtomb whelp clib "wcrtomb, _fwcrtomb"
wcscat whelp clib "strcat, _fstrcat, wcscat, _mbscat, _fmbscat"
wcschr whelp clib "strchr, _fstrchr, wcschr, _mbschr, _fmbschr"
wcscmp whelp clib "strcmp, _fstrcmp, wcscmp, _mbscmp, _fmbscmp"
wcscmpi whelp clib "strcmpi, wcscmpi"
wcscoll whelp clib "strcoll, wcscoll, _mbscoll"
wcscpy whelp clib "strcpy, _fstrcpy, wcscpy, _mbscpy, _fmbscpy"
wcscspn whelp clib "strcspn, _fstrcspn, wcscspn, _mbscspn, _fmbscspn"
_wcsdec whelp clib "_strdec, _wcsdec, _mbsdec, _fmbsdec"
_wcsdup whelp clib "strdup, _strdup, _fstrdup, _wcsdup, _mbsdup, _fmbsdup"
wcserror whelp clib "strerror, wcserror"
wcsftime whelp clib "strftime, wcsftime, _wstrftime_ms"
_wcsicmp whelp clib "stricmp, _stricmp, _fstricmp, _wcsicmp, _mbsicmp, _fmbsicmp"
_wcsicoll whelp clib "_stricoll, _wcsicoll, _mbsicoll"
_wcsinc whelp clib "_strinc, _wcsinc, _mbsinc, _fmbsinc"
wcslen whelp clib "strlen, _fstrlen, wcslen, _mbslen, _fmbslen"
_wcslwr whelp clib "strlwr, _strlwr, _fstrlwr, _wcslwr, _mbslwr, _fmbslwr"
wcsncat whelp clib "strncat, _fstrncat, wcsncat, _mbsncat, _fmbsncat"
wcsncmp whelp clib "strncmp, _fstrncmp, wcsncmp, _mbsncmp, _fmbsncmp"
_wcsncnt whelp clib "_mbsnccnt, _fmbsnccnt, _strncnt, _wcsncnt"
_wcsncoll whelp clib "_strncoll, _wcsncoll, _mbsncoll"
wcsncpy whelp clib "strncpy, _fstrncpy, wcsncpy, _mbsncpy, _fmbsncpy"
_wcsnextc whelp clib "_mbsnextc, _fmbsnextc, _strnextc, _wcsnextc"
_wcsnicmp whelp clib "strnicmp, _strnicmp, _fstrnicmp, _wcsnicmp, _mbsnicmp, _fmbsnicmp"
_wcsnicoll whelp clib "_strnicoll, _wcsnicoll, _mbsnicoll"
_wcsninc whelp clib "_strninc, _wcsninc, _mbsninc, _fmbsninc"
_wcsnset whelp clib "strnset, _strnset, _fstrnset, _wcsnset, _mbsnset, _fmbsnset"
wcspbrk whelp clib "strpbrk, _fstrpbrk, wcspbrk, _mbspbrk, _fmbspbrk"
wcsrchr whelp clib "strrchr, _fstrrchr, wcsrchr, _mbsrchr, _fmbsrchr"
_wcsrev whelp clib "strrev, _strrev, _fstrrev, _wcsrev, _mbsrev, _fmbsrev"
wcsrtombs whelp clib "wcsrtombs, _fwcsrtombs"
_wcsset whelp clib "strset, _strset, _fstrset, _wcsset, _mbsset, _fmbsset"
wcsspn whelp clib "strspn, _fstrspn, wcsspn, _mbsspn, _fmbsspn"
_wcsspnp whelp clib "strspnp, _strspnp, _fstrspnp, _wcsspnp, _mbsspnp, _fmbsspnp"
wcsstr whelp clib "strstr, _fstrstr, wcsstr, _mbsstr, _fmbsstr"
wcstod whelp clib "strtod, wcstod"
wcstok whelp clib "strtok, _fstrtok, wcstok, _mbstok, _fmbstok"
wcstol whelp clib "strtol, wcstol"
wcstombs whelp clib "wcstombs, _fwcstombs"
wcstoul whelp clib "strtoul, wcstoul"
_wcsupr whelp clib "strupr, _strupr, _fstrupr, _wcsupr, _mbsupr, _fmbsupr"
wcsxfrm whelp clib "strxfrm, wcsxfrm"
wctob whelp clib wctob
wctomb whelp clib "wctomb, _fwctomb"
wctype whelp clib wctype
_wenviron whelp clib "Global Data"
_wfcvt whelp clib "fcvt, _fcvt, _wfcvt"
_wfdopen whelp clib "fdopen, _fdopen, _wfdopen"
_wfindfirst whelp clib "_findfirst, _findfirsti64, _wfindfirst, _wfindfirsti64"
_wfindfirsti64 whelp clib "_findfirst, _findfirsti64, _wfindfirst, _wfindfirsti64"
_wfindnext whelp clib "_findnext, _findnexti64, _wfindnext, _wfindnexti64"
_wfindnexti64 whelp clib "_findnext, _findnexti64, _wfindnext, _wfindnexti64"
_wfopen whelp clib "fopen, _wfopen"
_wfreopen whelp clib "freopen, _wfreopen"
_wfsopen whelp clib "_fsopen, _wfsopen"
_wfstat whelp clib "fstat, _fstat, _fstati64, _wfstat, _wfstati64"
_wfstati64 whelp clib "fstat, _fstat, _fstati64, _wfstat, _wfstati64"
_wfullpath whelp clib "_fullpath, _wfullpath"
_wgcvt whelp clib "gcvt, _gcvt, _wgcvt"
_wgetcwd whelp clib "getcwd, _wgetcwd"
_wgetdcwd whelp clib "_getdcwd, _wgetdcwd"
_wgetenv whelp clib "getenv, _wgetenv"
_win_flags_alloc_ whelp clib "Global Data"
_win_flags_realloc_ whelp clib "Global Data"
_winmajor whelp clib "Global Data"