-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathword.idx
3372 lines (3372 loc) · 158 KB
/
word.idx
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
@f /functions/FD_CLR.html
@t FD_CLR - macros for synchronous I/O multiplexing
=FD_CLR - macros for synchronous I/O multiplexing
@f /functions/_Exit.html
@t _Exit, _exit - terminate a process
=_Exit, _exit - terminate a process
@f /functions/_longjmp.html
@t _longjmp, _setjmp - non-local goto
=_longjmp, _setjmp - non-local goto
@f /functions/_tolower.html
@t _tolower - transliterate uppercase characters to lowercase
=_tolower - transliterate uppercase characters to lowercase
@f /functions/_toupper.html
@t _toupper - transliterate lowercase characters to uppercase
=_toupper - transliterate lowercase characters to uppercase
@f /functions/a64l.html
@t a64l, l64a - convert between a 32-bit integer and a radix-64 ASCII string
=a64l, l64a - convert between a 32-bit integer and a radix-64 ASCII string
@f /functions/abort.html
@t abort - generate an abnormal process abort
=abort - generate an abnormal process abort
@f /functions/abs.html
@t abs - return an integer absolute value
=abs - return an integer absolute value
@f /functions/accept.html
@t accept - accept a new connection on a socket
=accept - accept a new connection on a socket
@f /functions/access.html
@t access, faccessat - determine accessibility of a file relative to directory file descriptor
=access, faccessat - determine accessibility of a file relative to directory file descriptor
@f /functions/acos.html
@t acos, acosf, acosl - arc cosine functions
=acos, acosf, acosl - arc cosine functions
@f /functions/acosh.html
@t acosh, acoshf, acoshl - inverse hyperbolic cosine functions
=acosh, acoshf, acoshl - inverse hyperbolic cosine functions
@f /functions/acosl.html
@t acosl - arc cosine functions
=acosl - arc cosine functions
@f /functions/aio_cancel.html
@t aio_cancel - cancel an asynchronous I/O request
=aio_cancel - cancel an asynchronous I/O request
@f /functions/aio_error.html
@t aio_error - retrieve errors status for an asynchronous I/O operation
=aio_error - retrieve errors status for an asynchronous I/O operation
@f /functions/aio_fsync.html
@t aio_fsync - asynchronous file synchronization
=aio_fsync - asynchronous file synchronization
@f /functions/aio_read.html
@t aio_read - asynchronous read from a file
=aio_read - asynchronous read from a file
@f /functions/aio_return.html
@t aio_return - retrieve return status of an asynchronous I/O operation
=aio_return - retrieve return status of an asynchronous I/O operation
@f /functions/aio_suspend.html
@t aio_suspend - wait for an asynchronous I/O request
=aio_suspend - wait for an asynchronous I/O request
@f /functions/aio_write.html
@t aio_write - asynchronous write to a file
=aio_write - asynchronous write to a file
@f /functions/alarm.html
@t alarm - schedule an alarm signal
=alarm - schedule an alarm signal
@f /functions/alphasort.html
@t alphasort, scandir - scan a directory
=alphasort, scandir - scan a directory
@f /functions/asctime.html
@t asctime, asctime_r - convert date and time to a string
=asctime, asctime_r - convert date and time to a string
@f /functions/asin.html
@t asin, asinf, asinl - arc sine function
=asin, asinf, asinl - arc sine function
@f /functions/asinh.html
@t asinh, asinhf, asinhl - inverse hyperbolic sine functions
=asinh, asinhf, asinhl - inverse hyperbolic sine functions
@f /functions/asinl.html
@t asinl - arc sine function
=asinl - arc sine function
@f /functions/assert.html
@t assert - insert program diagnostics
=assert - insert program diagnostics
@f /functions/atan.html
@t atan, atanf, atanl - arc tangent function
=atan, atanf, atanl - arc tangent function
@f /functions/atan2.html
@t atan2, atan2f, atan2l - arc tangent functions
=atan2, atan2f, atan2l - arc tangent functions
@f /functions/atanf.html
@t atanf - arc tangent function
=atanf - arc tangent function
@f /functions/atanh.html
@t atanh, atanhf, atanhl - inverse hyperbolic tangent functions
=atanh, atanhf, atanhl - inverse hyperbolic tangent functions
@f /functions/atanl.html
@t atanl - arc tangent function
=atanl - arc tangent function
@f /functions/atexit.html
@t atexit - register a function to run at process termination
=atexit - register a function to run at process termination
@f /functions/atof.html
@t atof - convert a string to a double-precision number
=atof - convert a string to a double-precision number
@f /functions/atoi.html
@t atoi - convert a string to an integer
=atoi - convert a string to an integer
@f /functions/atol.html
@t atol, atoll - convert a string to a long integer
=atol, atoll - convert a string to a long integer
@f /functions/basename.html
@t basename - return the last component of a pathname
=basename - return the last component of a pathname
@f /functions/bind.html
@t bind - bind a name to a socket
=bind - bind a name to a socket
@f /functions/bsearch.html
@t bsearch - binary search a sorted table
=bsearch - binary search a sorted table
@f /functions/btowc.html
@t btowc - single byte to wide character conversion
=btowc - single byte to wide character conversion
@f /functions/cabs.html
@t cabs, cabsf, cabsl - return a complex absolute value
=cabs, cabsf, cabsl - return a complex absolute value
@f /functions/cacos.html
@t cacos, cacosf, cacosl - complex arc cosine functions
=cacos, cacosf, cacosl - complex arc cosine functions
@f /functions/cacosh.html
@t cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions
=cacosh, cacoshf, cacoshl - complex arc hyperbolic cosine functions
@f /functions/cacosl.html
@t cacosl - complex arc cosine functions
=cacosl - complex arc cosine functions
@f /functions/calloc.html
@t calloc - a memory allocator
=calloc - a memory allocator
@f /functions/carg.html
@t carg, cargf, cargl - complex argument functions
=carg, cargf, cargl - complex argument functions
@f /functions/casin.html
@t casin, casinf, casinl - complex arc sine functions
=casin, casinf, casinl - complex arc sine functions
@f /functions/casinh.html
@t casinh, casinhf, casinhl - complex arc hyperbolic sine functions
=casinh, casinhf, casinhl - complex arc hyperbolic sine functions
@f /functions/casinl.html
@t casinl - complex arc sine functions
=casinl - complex arc sine functions
@f /functions/catan.html
@t catan, catanf, catanl - complex arc tangent functions
=catan, catanf, catanl - complex arc tangent functions
@f /functions/catanh.html
@t catanh, catanhf, catanhl - complex arc hyperbolic tangent functions
=catanh, catanhf, catanhl - complex arc hyperbolic tangent functions
@f /functions/catanl.html
@t catanl - complex arc tangent functions
=catanl - complex arc tangent functions
@f /functions/catclose.html
@t catclose - close a message catalog descriptor
=catclose - close a message catalog descriptor
@f /functions/catgets.html
@t catgets - read a program message
=catgets - read a program message
@f /functions/catopen.html
@t catopen - open a message catalog
=catopen - open a message catalog
@f /functions/cbrt.html
@t cbrt, cbrtf, cbrtl - cube root functions
=cbrt, cbrtf, cbrtl - cube root functions
@f /functions/ccos.html
@t ccos, ccosf, ccosl - complex cosine functions
=ccos, ccosf, ccosl - complex cosine functions
@f /functions/ccosh.html
@t ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions
=ccosh, ccoshf, ccoshl - complex hyperbolic cosine functions
@f /functions/ccosl.html
@t ccosl - complex cosine functions
=ccosl - complex cosine functions
@f /functions/ceil.html
@t ceil, ceilf, ceill - ceiling value function
=ceil, ceilf, ceill - ceiling value function
@f /functions/cexp.html
@t cexp, cexpf, cexpl - complex exponential functions
=cexp, cexpf, cexpl - complex exponential functions
@f /functions/cfgetispeed.html
@t cfgetispeed - get input baud rate
=cfgetispeed - get input baud rate
@f /functions/cfgetospeed.html
@t cfgetospeed - get output baud rate
=cfgetospeed - get output baud rate
@f /functions/cfsetispeed.html
@t cfsetispeed - set input baud rate
=cfsetispeed - set input baud rate
@f /functions/cfsetospeed.html
@t cfsetospeed - set output baud rate
=cfsetospeed - set output baud rate
@f /functions/chdir.html
@t chdir - change working directory
=chdir - change working directory
@f /functions/chmod.html
@t chmod, fchmodat - change mode of a file relative to directory file descriptor
=chmod, fchmodat - change mode of a file relative to directory file descriptor
@f /functions/chown.html
@t chown, fchownat - change owner and group of a file relative to directory file descriptor
=chown, fchownat - change owner and group of a file relative to directory file descriptor
@f /functions/cimag.html
@t cimag, cimagf, cimagl - complex imaginary functions
=cimag, cimagf, cimagl - complex imaginary functions
@f /functions/clearerr.html
@t clearerr - clear indicators on a stream
=clearerr - clear indicators on a stream
@f /functions/clock.html
@t clock - report CPU time used
=clock - report CPU time used
@f /functions/clock_getcpuclockid.html
@t clock_getcpuclockid - access a process CPU-time clock (ADVANCED REALTIME)
=clock_getcpuclockid - access a process CPU-time clock (ADVANCED REALTIME)
@f /functions/clock_getres.html
@t clock_getres, clock_gettime, clock_settime - clock and timer functions
=clock_getres, clock_gettime, clock_settime - clock and timer functions
@f /functions/clock_nanosleep.html
@t clock_nanosleep - high resolution sleep with specifiable clock
=clock_nanosleep - high resolution sleep with specifiable clock
@f /functions/clock_settime.html
@t clock_settime - clock and timer functions
=clock_settime - clock and timer functions
@f /functions/clog.html
@t clog, clogf, clogl - complex natural logarithm functions
=clog, clogf, clogl - complex natural logarithm functions
@f /functions/close.html
@t close - close a file descriptor
=close - close a file descriptor
@f /functions/closedir.html
@t closedir - close a directory stream
=closedir - close a directory stream
@f /functions/closelog.html
@t closelog, openlog, setlogmask, syslog - control system log
=closelog, openlog, setlogmask, syslog - control system log
@f /functions/confstr.html
@t confstr - get configurable variables
=confstr - get configurable variables
@f /functions/conj.html
@t conj, conjf, conjl - complex conjugate functions
=conj, conjf, conjl - complex conjugate functions
@f /functions/connect.html
@t connect - connect a socket
=connect - connect a socket
@f /functions/copysign.html
@t copysign, copysignf, copysignl - number manipulation function
=copysign, copysignf, copysignl - number manipulation function
@f /functions/cos.html
@t cos, cosf, cosl - cosine function
=cos, cosf, cosl - cosine function
@f /functions/cosh.html
@t cosh, coshf, coshl - hyperbolic cosine functions
=cosh, coshf, coshl - hyperbolic cosine functions
@f /functions/cosl.html
@t cosl - cosine function
=cosl - cosine function
@f /functions/cpow.html
@t cpow, cpowf, cpowl - complex power functions
=cpow, cpowf, cpowl - complex power functions
@f /functions/cproj.html
@t cproj, cprojf, cprojl - complex projection functions
=cproj, cprojf, cprojl - complex projection functions
@f /functions/creal.html
@t creal, crealf, creall - complex real functions
=creal, crealf, creall - complex real functions
@f /functions/creat.html
@t creat - create a new file or rewrite an existing one
=creat - create a new file or rewrite an existing one
@f /functions/crypt.html
@t crypt - string encoding function (CRYPT)
=crypt - string encoding function (CRYPT)
@f /functions/csin.html
@t csin, csinf, csinl - complex sine functions
=csin, csinf, csinl - complex sine functions
@f /functions/csinh.html
@t csinh, csinhf, csinhl - complex hyperbolic sine functions
=csinh, csinhf, csinhl - complex hyperbolic sine functions
@f /functions/csinl.html
@t csinl - complex sine functions
=csinl - complex sine functions
@f /functions/csqrt.html
@t csqrt, csqrtf, csqrtl - complex square root functions
=csqrt, csqrtf, csqrtl - complex square root functions
@f /functions/ctan.html
@t ctan, ctanf, ctanl - complex tangent functions
=ctan, ctanf, ctanl - complex tangent functions
@f /functions/ctanh.html
@t ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions
=ctanh, ctanhf, ctanhl - complex hyperbolic tangent functions
@f /functions/ctanl.html
@t ctanl - complex tangent functions
=ctanl - complex tangent functions
@f /functions/ctermid.html
@t ctermid - generate a pathname for the controlling terminal
=ctermid - generate a pathname for the controlling terminal
@f /functions/ctime.html
@t ctime, ctime_r - convert a time value to a date and time string
=ctime, ctime_r - convert a time value to a date and time string
@f /functions/daylight.html
@t daylight - daylight savings time flag
=daylight - daylight savings time flag
@f /functions/dbm_clearerr.html
@t dbm_clearerr, dbm_close, dbm_delete, dbm_error, dbm_fetch, dbm_firstkey, dbm_nextkey, dbm_open, dbm_store - database functions
=dbm_clearerr, dbm_close, dbm_delete, dbm_error, dbm_fetch, dbm_firstkey, dbm_nextkey, dbm_open, dbm_store - database functions
@f /functions/difftime.html
@t difftime - compute the difference between two calendar time values
=difftime - compute the difference between two calendar time values
@f /functions/dirfd.html
@t dirfd - extract the file descriptor used by a DIR stream
=dirfd - extract the file descriptor used by a DIR stream
@f /functions/dirname.html
@t dirname - report the parent directory name of a file pathname
=dirname - report the parent directory name of a file pathname
@f /functions/div.html
@t div - compute the quotient and remainder of an integer division
=div - compute the quotient and remainder of an integer division
@f /functions/dlclose.html
@t dlclose - close a dlopen object
=dlclose - close a dlopen object
@f /functions/dlerror.html
@t dlerror - get diagnostic information
=dlerror - get diagnostic information
@f /functions/dlopen.html
@t dlopen - gain access to an executable object file
=dlopen - gain access to an executable object file
@f /functions/dlsym.html
@t dlsym - obtain the address of a symbol from a dlopen object
=dlsym - obtain the address of a symbol from a dlopen object
@f /functions/dprintf.html
@t dprintf - print formatted output
=dprintf - print formatted output
@f /functions/drand48.html
@t drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers
=drand48, erand48, jrand48, lcong48, lrand48, mrand48, nrand48, seed48, srand48 - generate uniformly distributed pseudo-random numbers
@f /functions/dup.html
@t dup, dup2 - duplicate an open file descriptor
=dup, dup2 - duplicate an open file descriptor
@f /functions/duplocale.html
@t duplocale - duplicate a locale object
=duplocale - duplicate a locale object
@f /functions/encrypt.html
@t encrypt - encoding function (CRYPT)
=encrypt - encoding function (CRYPT)
@f /functions/endgrent.html
@t endgrent, getgrent, setgrent - group database entry functions
=endgrent, getgrent, setgrent - group database entry functions
@f /functions/endhostent.html
@t endhostent, gethostent, sethostent - network host database functions
=endhostent, gethostent, sethostent - network host database functions
@f /functions/endnetent.html
@t endnetent, getnetbyaddr, getnetbyname, getnetent, setnetent - network database functions
=endnetent, getnetbyaddr, getnetbyname, getnetent, setnetent - network database functions
@f /functions/endprotoent.html
@t endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions
=endprotoent, getprotobyname, getprotobynumber, getprotoent, setprotoent - network protocol database functions
@f /functions/endpwent.html
@t endpwent, getpwent, setpwent - user database functions
=endpwent, getpwent, setpwent - user database functions
@f /functions/endservent.html
@t endservent, getservbyname, getservbyport, getservent, setservent - network services database functions
=endservent, getservbyname, getservbyport, getservent, setservent - network services database functions
@f /functions/endutxent.html
@t endutxent, getutxent, getutxid, getutxline, pututxline, setutxent - user accounting database functions
=endutxent, getutxent, getutxid, getutxline, pututxline, setutxent - user accounting database functions
@f /functions/environ.html
@t environ - array of character pointers to the environment strings
=environ - array of character pointers to the environment strings
@f /functions/erand48.html
@t erand48 - generate uniformly distributed pseudo-random numbers
=erand48 - generate uniformly distributed pseudo-random numbers
@f /functions/erf.html
@t erf, erff, erfl - error functions
=erf, erff, erfl - error functions
@f /functions/erfc.html
@t erfc, erfcf, erfcl - complementary error functions
=erfc, erfcf, erfcl - complementary error functions
@f /functions/erff.html
@t erff, erfl - error functions
=erff, erfl - error functions
@f /functions/errno.html
@t errno - error return value
=errno - error return value
@f /functions/exec.html
@t environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file
=environ, execl, execle, execlp, execv, execve, execvp, fexecve - execute a file
@f /functions/exit.html
@t exit - terminate a process
=exit - terminate a process
@f /functions/exp.html
@t exp, expf, expl - exponential function
=exp, expf, expl - exponential function
@f /functions/exp2.html
@t exp2, exp2f, exp2l - exponential base 2 functions
=exp2, exp2f, exp2l - exponential base 2 functions
@f /functions/expm1.html
@t expm1, expm1f, expm1l - compute exponential functions
=expm1, expm1f, expm1l - compute exponential functions
@f /functions/fabs.html
@t fabs, fabsf, fabsl - absolute value function
=fabs, fabsf, fabsl - absolute value function
@f /functions/faccessat.html
@t faccessat - determine accessibility of a file relative to directory file descriptor
=faccessat - determine accessibility of a file relative to directory file descriptor
@f /functions/fattach.html
@t fattach - attach a STREAMS-based file descriptor to a file in the file system name space (STREAMS)
=fattach - attach a STREAMS-based file descriptor to a file in the file system name space (STREAMS)
@f /functions/fchdir.html
@t fchdir - change working directory
=fchdir - change working directory
@f /functions/fchmod.html
@t fchmod - change mode of a file
=fchmod - change mode of a file
@f /functions/fchmodat.html
@t fchmodat - change mode of a file relative to directory file descriptor
=fchmodat - change mode of a file relative to directory file descriptor
@f /functions/fchown.html
@t fchown - change owner and group of a file
=fchown - change owner and group of a file
@f /functions/fchownat.html
@t fchownat - change owner and group of a file relative to directory file descriptor
=fchownat - change owner and group of a file relative to directory file descriptor
@f /functions/fclose.html
@t fclose - close a stream
=fclose - close a stream
@f /functions/fcntl.html
@t fcntl - file control
=fcntl - file control
@f /functions/fdatasync.html
@t fdatasync - synchronize the data of a file (REALTIME)
=fdatasync - synchronize the data of a file (REALTIME)
@f /functions/fdetach.html
@t fdetach - detach a name from a STREAMS-based file descriptor (STREAMS)
=fdetach - detach a name from a STREAMS-based file descriptor (STREAMS)
@f /functions/fdim.html
@t fdim, fdimf, fdiml - compute positive difference between two floating-point numbers
=fdim, fdimf, fdiml - compute positive difference between two floating-point numbers
@f /functions/fdopen.html
@t fdopen - associate a stream with a file descriptor
=fdopen - associate a stream with a file descriptor
@f /functions/fdopendir.html
@t fdopendir, opendir - open directory associated with file descriptor
=fdopendir, opendir - open directory associated with file descriptor
@f /functions/feclearexcept.html
@t feclearexcept - clear floating-point exception
=feclearexcept - clear floating-point exception
@f /functions/fegetenv.html
@t fegetenv, fesetenv - get and set current floating-point environment
=fegetenv, fesetenv - get and set current floating-point environment
@f /functions/fegetexceptflag.html
@t fegetexceptflag, fesetexceptflag - get and set floating-point status flags
=fegetexceptflag, fesetexceptflag - get and set floating-point status flags
@f /functions/fegetround.html
@t fegetround, fesetround - get and set current rounding direction
=fegetround, fesetround - get and set current rounding direction
@f /functions/feholdexcept.html
@t feholdexcept - save current floating-point environment
=feholdexcept - save current floating-point environment
@f /functions/feof.html
@t feof - test end-of-file indicator on a stream
=feof - test end-of-file indicator on a stream
@f /functions/feraiseexcept.html
@t feraiseexcept - raise floating-point exception
=feraiseexcept - raise floating-point exception
@f /functions/ferror.html
@t ferror - test error indicator on a stream
=ferror - test error indicator on a stream
@f /functions/fesetenv.html
@t fesetenv - set current floating-point environment
=fesetenv - set current floating-point environment
@f /functions/fesetexceptflag.html
@t fesetexceptflag - set floating-point status flags
=fesetexceptflag - set floating-point status flags
@f /functions/fesetround.html
@t fesetround - set current rounding direction
=fesetround - set current rounding direction
@f /functions/fetestexcept.html
@t fetestexcept - test floating-point exception flags
=fetestexcept - test floating-point exception flags
@f /functions/feupdateenv.html
@t feupdateenv - update floating-point environment
=feupdateenv - update floating-point environment
@f /functions/fexecve.html
@t fexecve - execute a file
=fexecve - execute a file
@f /functions/fflush.html
@t fflush - flush a stream
=fflush - flush a stream
@f /functions/ffs.html
@t ffs - find first set bit
=ffs - find first set bit
@f /functions/fgetc.html
@t fgetc - get a byte from a stream
=fgetc - get a byte from a stream
@f /functions/fgetpos.html
@t fgetpos - get current file position information
=fgetpos - get current file position information
@f /functions/fgets.html
@t fgets - get a string from a stream
=fgets - get a string from a stream
@f /functions/fgetwc.html
@t fgetwc - get a wide-character code from a stream
=fgetwc - get a wide-character code from a stream
@f /functions/fgetws.html
@t fgetws - get a wide-character string from a stream
=fgetws - get a wide-character string from a stream
@f /functions/fileno.html
@t fileno - map a stream pointer to a file descriptor
=fileno - map a stream pointer to a file descriptor
@f /functions/flockfile.html
@t flockfile, ftrylockfile, funlockfile - stdio locking functions
=flockfile, ftrylockfile, funlockfile - stdio locking functions
@f /functions/floor.html
@t floor, floorf, floorl - floor function
=floor, floorf, floorl - floor function
@f /functions/fma.html
@t fma, fmaf, fmal - floating-point multiply-add
=fma, fmaf, fmal - floating-point multiply-add
@f /functions/fmax.html
@t fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers
=fmax, fmaxf, fmaxl - determine maximum numeric value of two floating-point numbers
@f /functions/fmemopen.html
@t fmemopen - open a memory buffer stream
=fmemopen - open a memory buffer stream
@f /functions/fmin.html
@t fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers
=fmin, fminf, fminl - determine minimum numeric value of two floating-point numbers
@f /functions/fmod.html
@t fmod, fmodf, fmodl - floating-point remainder value function
=fmod, fmodf, fmodl - floating-point remainder value function
@f /functions/fmtmsg.html
@t fmtmsg - display a message in the specified format on standard error and/or a system console
=fmtmsg - display a message in the specified format on standard error and/or a system console
@f /functions/fnmatch.html
@t fnmatch - match a filename or a pathname
=fnmatch - match a filename or a pathname
@f /functions/fopen.html
@t fopen - open a stream
=fopen - open a stream
@f /functions/fork.html
@t fork - create a new process
=fork - create a new process
@f /functions/fpathconf.html
@t fpathconf, pathconf - get configurable pathname variables
=fpathconf, pathconf - get configurable pathname variables
@f /functions/fpclassify.html
@t fpclassify - classify real floating type
=fpclassify - classify real floating type
@f /functions/fprintf.html
@t dprintf, fprintf, printf, snprintf, sprintf - print formatted output
=dprintf, fprintf, printf, snprintf, sprintf - print formatted output
@f /functions/fputc.html
@t fputc - put a byte on a stream
=fputc - put a byte on a stream
@f /functions/fputs.html
@t fputs - put a string on a stream
=fputs - put a string on a stream
@f /functions/fputwc.html
@t fputwc - put a wide-character code on a stream
=fputwc - put a wide-character code on a stream
@f /functions/fputws.html
@t fputws - put a wide-character string on a stream
=fputws - put a wide-character string on a stream
@f /functions/fread.html
@t fread - binary input
=fread - binary input
@f /functions/free.html
@t free - free allocated memory
=free - free allocated memory
@f /functions/freeaddrinfo.html
@t freeaddrinfo, getaddrinfo - get address information
=freeaddrinfo, getaddrinfo - get address information
@f /functions/freelocale.html
@t freelocale - free resources allocated for a locale object
=freelocale - free resources allocated for a locale object
@f /functions/freopen.html
@t freopen - open a stream
=freopen - open a stream
@f /functions/frexp.html
@t frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number
=frexp, frexpf, frexpl - extract mantissa and exponent from a double precision number
@f /functions/fscanf.html
@t fscanf, scanf, sscanf - convert formatted input
=fscanf, scanf, sscanf - convert formatted input
@f /functions/fseek.html
@t fseek, fseeko - reposition a file-position indicator in a stream
=fseek, fseeko - reposition a file-position indicator in a stream
@f /functions/fsetpos.html
@t fsetpos - set current file position
=fsetpos - set current file position
@f /functions/fstat.html
@t fstat - get file status
=fstat - get file status
@f /functions/fstatat.html
@t fstatat, lstat, stat - get file status
=fstatat, lstat, stat - get file status
@f /functions/fstatvfs.html
@t fstatvfs, statvfs - get file system information
=fstatvfs, statvfs - get file system information
@f /functions/fsync.html
@t fsync - synchronize changes to a file
=fsync - synchronize changes to a file
@f /functions/ftell.html
@t ftell, ftello - return a file offset in a stream
=ftell, ftello - return a file offset in a stream
@f /functions/ftok.html
@t ftok - generate an IPC key
=ftok - generate an IPC key
@f /functions/ftruncate.html
@t ftruncate - truncate a file to a specified length
=ftruncate - truncate a file to a specified length
@f /functions/ftrylockfile.html
@t ftrylockfile - stdio locking functions
=ftrylockfile - stdio locking functions
@f /functions/ftw.html
@t ftw - traverse (walk) a file tree
=ftw - traverse (walk) a file tree
@f /functions/funlockfile.html
@t funlockfile - stdio locking functions
=funlockfile - stdio locking functions
@f /functions/futimens.html
@t futimens, utimensat, utimes - set file access and modification times
=futimens, utimensat, utimes - set file access and modification times
@f /functions/fwide.html
@t fwide - set stream orientation
=fwide - set stream orientation
@f /functions/fwprintf.html
@t fwprintf, swprintf, wprintf - print formatted wide-character output
=fwprintf, swprintf, wprintf - print formatted wide-character output
@f /functions/fwrite.html
@t fwrite - binary output
=fwrite - binary output
@f /functions/fwscanf.html
@t fwscanf, swscanf, wscanf - convert formatted wide-character input
=fwscanf, swscanf, wscanf - convert formatted wide-character input
@f /functions/gai_strerror.html
@t gai_strerror - address and name information error description
=gai_strerror - address and name information error description
@f /functions/getaddrinfo.html
@t getaddrinfo - get address information
=getaddrinfo - get address information
@f /functions/getc.html
@t getc - get a byte from a stream
=getc - get a byte from a stream
@f /functions/getc_unlocked.html
@t getc_unlocked, getchar_unlocked, putc_unlocked, putchar_unlocked - stdio with explicit client locking
=getc_unlocked, getchar_unlocked, putc_unlocked, putchar_unlocked - stdio with explicit client locking
@f /functions/getchar.html
@t getchar - get a byte from a stdin stream
=getchar - get a byte from a stdin stream
@f /functions/getchar_unlocked.html
@t getchar_unlocked - stdio with explicit client locking
=getchar_unlocked - stdio with explicit client locking
@f /functions/getcwd.html
@t getcwd - get the pathname of the current working directory
=getcwd - get the pathname of the current working directory
@f /functions/getdate.html
@t getdate - convert user format date and time
=getdate - convert user format date and time
@f /functions/getdelim.html
@t getdelim, getline - read a delimited record from stream
=getdelim, getline - read a delimited record from stream
@f /functions/getegid.html
@t getegid - get the effective group ID
=getegid - get the effective group ID
@f /functions/getenv.html
@t getenv - get value of an environment variable
=getenv - get value of an environment variable
@f /functions/geteuid.html
@t geteuid - get the effective user ID
=geteuid - get the effective user ID
@f /functions/getgid.html
@t getgid - get the real group ID
=getgid - get the real group ID
@f /functions/getgrent.html
@t getgrent - get the group database entry
=getgrent - get the group database entry
@f /functions/getgrgid.html
@t getgrgid, getgrgid_r - get group database entry for a group ID
=getgrgid, getgrgid_r - get group database entry for a group ID
@f /functions/getgrnam.html
@t getgrnam, getgrnam_r - search group database for a name
=getgrnam, getgrnam_r - search group database for a name
@f /functions/getgroups.html
@t getgroups - get supplementary group IDs
=getgroups - get supplementary group IDs
@f /functions/gethostent.html
@t gethostent - network host database functions
=gethostent - network host database functions
@f /functions/gethostid.html
@t gethostid - get an identifier for the current host
=gethostid - get an identifier for the current host
@f /functions/gethostname.html
@t gethostname - get name of current host
=gethostname - get name of current host
@f /functions/getitimer.html
@t getitimer, setitimer - get and set value of interval timer
=getitimer, setitimer - get and set value of interval timer
@f /functions/getline.html
@t getline - read a delimited record from stream
=getline - read a delimited record from stream
@f /functions/getlogin.html
@t getlogin, getlogin_r - get login name
=getlogin, getlogin_r - get login name
@f /functions/getmsg.html
@t getmsg, getpmsg - receive next message from a STREAMS file (STREAMS)
=getmsg, getpmsg - receive next message from a STREAMS file (STREAMS)
@f /functions/getnameinfo.html
@t getnameinfo - get name information
=getnameinfo - get name information
@f /functions/getnetbyaddr.html
@t getnetbyaddr, getnetbyname, getnetent - network database functions
=getnetbyaddr, getnetbyname, getnetent - network database functions
@f /functions/getopt.html
@t getopt, optarg, opterr, optind, optopt - command option parsing
=getopt, optarg, opterr, optind, optopt - command option parsing
@f /functions/getpeername.html
@t getpeername - get the name of the peer socket
=getpeername - get the name of the peer socket
@f /functions/getpgid.html
@t getpgid - get the process group ID for a process
=getpgid - get the process group ID for a process
@f /functions/getpgrp.html
@t getpgrp - get the process group ID of the calling process
=getpgrp - get the process group ID of the calling process
@f /functions/getpid.html
@t getpid - get the process ID
=getpid - get the process ID
@f /functions/getpmsg.html
@t getpmsg - receive next message from a STREAMS file
=getpmsg - receive next message from a STREAMS file
@f /functions/getppid.html
@t getppid - get the parent process ID
=getppid - get the parent process ID
@f /functions/getpriority.html
@t getpriority, setpriority - get and set the nice value
=getpriority, setpriority - get and set the nice value
@f /functions/getprotobyname.html
@t getprotobyname, getprotobynumber, getprotent - network protocol database functions
=getprotobyname, getprotobynumber, getprotent - network protocol database functions
@f /functions/getpwent.html
@t getpwent - get user database entry
=getpwent - get user database entry
@f /functions/getpwnam.html
@t getpwnam, getpwnam_r - search user database for a name
=getpwnam, getpwnam_r - search user database for a name
@f /functions/getpwuid.html
@t getpwuid, getpwuid_r - search user database for a user ID
=getpwuid, getpwuid_r - search user database for a user ID
@f /functions/getrlimit.html
@t getrlimit, setrlimit - control maximum resource consumption
=getrlimit, setrlimit - control maximum resource consumption
@f /functions/getrusage.html
@t getrusage - get information about resource utilization
=getrusage - get information about resource utilization
@f /functions/gets.html
@t gets - get a string from a stdin stream
=gets - get a string from a stdin stream
@f /functions/getservbyname.html
@t getservbyname, getservbyport, getservent - network services database functions
=getservbyname, getservbyport, getservent - network services database functions
@f /functions/getsid.html
@t getsid - get the process group ID of a session leader
=getsid - get the process group ID of a session leader
@f /functions/getsockname.html
@t getsockname - get the socket name
=getsockname - get the socket name
@f /functions/getsockopt.html
@t getsockopt - get the socket options
=getsockopt - get the socket options
@f /functions/getsubopt.html
@t getsubopt - parse suboption arguments from a string
=getsubopt - parse suboption arguments from a string
@f /functions/gettimeofday.html
@t gettimeofday - get the date and time
=gettimeofday - get the date and time
@f /functions/getuid.html
@t getuid - get a real user ID
=getuid - get a real user ID
@f /functions/getutxent.html
@t getutxent, getutxid, getutxline - get user accounting database entries
=getutxent, getutxid, getutxline - get user accounting database entries
@f /functions/getwc.html
@t getwc - get a wide character from a stream
=getwc - get a wide character from a stream
@f /functions/getwchar.html
@t getwchar - get a wide character from a stdin stream
=getwchar - get a wide character from a stdin stream
@f /functions/glob.html
@t glob, globfree - generate pathnames matching a pattern
=glob, globfree - generate pathnames matching a pattern
@f /functions/gmtime.html
@t gmtime, gmtime_r - convert a time value to a broken-down UTC time
=gmtime, gmtime_r - convert a time value to a broken-down UTC time
@f /functions/grantpt.html
@t grantpt - grant access to the slave pseudo-terminal device
=grantpt - grant access to the slave pseudo-terminal device
@f /functions/hcreate.html
@t hcreate, hdestroy, hsearch - manage hash search table
=hcreate, hdestroy, hsearch - manage hash search table
@f /functions/htonl.html
@t htonl, htons, ntohl, ntohs - convert values between host and network byte order
=htonl, htons, ntohl, ntohs - convert values between host and network byte order
@f /functions/hypot.html
@t hypot, hypotf, hypotl - Euclidean distance function
=hypot, hypotf, hypotl - Euclidean distance function
@f /functions/iconv.html
@t iconv - codeset conversion function
=iconv - codeset conversion function
@f /functions/iconv_close.html
@t iconv_close - codeset conversion deallocation function
=iconv_close - codeset conversion deallocation function
@f /functions/iconv_open.html
@t iconv_open - codeset conversion allocation function
=iconv_open - codeset conversion allocation function
@f /functions/if_freenameindex.html
@t if_freenameindex - free memory allocated by if_nameindex
=if_freenameindex - free memory allocated by if_nameindex
@f /functions/if_indextoname.html
@t if_indextoname - map a network interface index to its corresponding name
=if_indextoname - map a network interface index to its corresponding name
@f /functions/if_nameindex.html
@t if_nameindex - return all network interface names and indexes
=if_nameindex - return all network interface names and indexes
@f /functions/if_nametoindex.html
@t if_nametoindex - map a network interface name to its corresponding index
=if_nametoindex - map a network interface name to its corresponding index
@f /functions/ilogb.html
@t ilogb, ilogbf, ilogbl - return an unbiased exponent
=ilogb, ilogbf, ilogbl - return an unbiased exponent
@f /functions/imaxabs.html
@t imaxabs - return absolute value
=imaxabs - return absolute value
@f /functions/imaxdiv.html
@t imaxdiv - return quotient and remainder
=imaxdiv - return quotient and remainder
@f /functions/inet_addr.html
@t inet_addr, inet_ntoa - IPv4 address manipulation
=inet_addr, inet_ntoa - IPv4 address manipulation
@f /functions/inet_ntop.html
@t inet_ntop, inet_pton - convert IPv4 and IPv6 addresses between binary and text form
=inet_ntop, inet_pton - convert IPv4 and IPv6 addresses between binary and text form
@f /functions/initstate.html
@t initstate, random, setstate, srandom - pseudo-random number functions
=initstate, random, setstate, srandom - pseudo-random number functions
@f /functions/insque.html
@t insque, remque - insert or remove an element in a queue
=insque, remque - insert or remove an element in a queue
@f /functions/ioctl.html
@t ioctl - control a STREAMS device (STREAMS)
=ioctl - control a STREAMS device (STREAMS)
@f /functions/isalnum.html
@t isalnum, isalnum_l - test for an alphanumeric character
=isalnum, isalnum_l - test for an alphanumeric character
@f /functions/isalpha.html
@t isalpha, isalpha_l - test for an alphabetic character
=isalpha, isalpha_l - test for an alphabetic character
@f /functions/isascii.html
@t isascii - test for a 7-bit US-ASCII character
=isascii - test for a 7-bit US-ASCII character
@f /functions/isastream.html
@t isastream - test a file descriptor (STREAMS)
=isastream - test a file descriptor (STREAMS)
@f /functions/isatty.html
@t isatty - test for a terminal device
=isatty - test for a terminal device
@f /functions/isblank.html
@t isblank, isblank_l - test for a blank character
=isblank, isblank_l - test for a blank character
@f /functions/iscntrl.html
@t iscntrl, iscntrl_l - test for a control character
=iscntrl, iscntrl_l - test for a control character
@f /functions/isdigit.html
@t isdigit, isdigit_l - test for a decimal digit
=isdigit, isdigit_l - test for a decimal digit
@f /functions/isfinite.html
@t isfinite - test for finite value
=isfinite - test for finite value
@f /functions/isgraph.html
@t isgraph, isgraph_l - test for a visible character
=isgraph, isgraph_l - test for a visible character
@f /functions/isgreater.html
@t isgreater - test if x greater than y
=isgreater - test if x greater than y
@f /functions/isgreaterequal.html
@t isgreaterequal - test if x is greater than or equal to y
=isgreaterequal - test if x is greater than or equal to y
@f /functions/isinf.html
@t isinf - test for infinity
=isinf - test for infinity
@f /functions/isless.html
@t isless - test if x is less than y
=isless - test if x is less than y
@f /functions/islessequal.html
@t islessequal - test if x is less than or equal to y
=islessequal - test if x is less than or equal to y
@f /functions/islessgreater.html
@t islessgreater - test if x is less than or greater than y
=islessgreater - test if x is less than or greater than y
@f /functions/islower.html
@t islower, islower_l - test for a lowercase letter
=islower, islower_l - test for a lowercase letter
@f /functions/isnan.html
@t isnan - test for a NaN
=isnan - test for a NaN
@f /functions/isnormal.html
@t isnormal - test for a normal value
=isnormal - test for a normal value
@f /functions/isprint.html
@t isprint, isprint_l - test for a printable character
=isprint, isprint_l - test for a printable character
@f /functions/ispunct.html
@t ispunct, ispunct_l - test for a punctuation character
=ispunct, ispunct_l - test for a punctuation character
@f /functions/isspace.html
@t isspace, isspace_l - test for a white-space character
=isspace, isspace_l - test for a white-space character
@f /functions/isunordered.html
@t isunordered - test if arguments are unordered
=isunordered - test if arguments are unordered
@f /functions/isupper.html
@t isupper, isupper_l - test for an uppercase letter
=isupper, isupper_l - test for an uppercase letter
@f /functions/iswalnum.html
@t iswalnum, iswalnum_l - test for an alphanumeric wide-character code
=iswalnum, iswalnum_l - test for an alphanumeric wide-character code
@f /functions/iswalpha.html
@t iswalpha, iswalpha_l - test for an alphabetic wide-character code
=iswalpha, iswalpha_l - test for an alphabetic wide-character code
@f /functions/iswblank.html
@t iswblank, iswblank_l - test for a blank wide-character code
=iswblank, iswblank_l - test for a blank wide-character code
@f /functions/iswcntrl.html
@t iswcntrl, iswcntrl_l - test for a control wide-character code
=iswcntrl, iswcntrl_l - test for a control wide-character code
@f /functions/iswctype.html
@t iswctype, iswctype_l - test character for a specified class
=iswctype, iswctype_l - test character for a specified class
@f /functions/iswdigit.html
@t iswdigit, iswdigit_l - test for a decimal digit wide-character code
=iswdigit, iswdigit_l - test for a decimal digit wide-character code
@f /functions/iswgraph.html
@t iswgraph, iswgraph_l - test for a visible wide-character code
=iswgraph, iswgraph_l - test for a visible wide-character code
@f /functions/iswlower.html
@t iswlower, iswlower_l - test for a lowercase letter wide-character code
=iswlower, iswlower_l - test for a lowercase letter wide-character code
@f /functions/iswprint.html
@t iswprint, iswprint_l - test for a printable wide-character code
=iswprint, iswprint_l - test for a printable wide-character code
@f /functions/iswpunct.html
@t iswpunct, iswpunct_l - test for a punctuation wide-character code
=iswpunct, iswpunct_l - test for a punctuation wide-character code
@f /functions/iswspace.html
@t iswspace, iswspace_l - test for a white-space wide-character code
=iswspace, iswspace_l - test for a white-space wide-character code
@f /functions/iswupper.html
@t iswupper, iswupper_l - test for an uppercase letter wide-character code
=iswupper, iswupper_l - test for an uppercase letter wide-character code
@f /functions/iswxdigit.html
@t iswxdigit, iswxdigit_l - test for a hexadecimal digit wide-character code
=iswxdigit, iswxdigit_l - test for a hexadecimal digit wide-character code
@f /functions/isxdigit.html
@t isxdigit, isxdigit_l - test for a hexadecimal digit
=isxdigit, isxdigit_l - test for a hexadecimal digit
@f /functions/j0.html
@t j0, j1, jn - Bessel functions of the first kind
=j0, j1, jn - Bessel functions of the first kind
@f /functions/jrand48.html
@t jrand48 - generate a uniformly distributed pseudo-random long signed integer
=jrand48 - generate a uniformly distributed pseudo-random long signed integer
@f /functions/kill.html
@t kill - send a signal to a process or a group of processes
=kill - send a signal to a process or a group of processes
@f /functions/killpg.html
@t killpg - send a signal to a process group
=killpg - send a signal to a process group
@f /functions/l64a.html
@t l64a - convert a 32-bit integer to a radix-64 ASCII string
=l64a - convert a 32-bit integer to a radix-64 ASCII string
@f /functions/labs.html
@t labs, llabs - return a long integer absolute value
=labs, llabs - return a long integer absolute value
@f /functions/lchown.html
@t lchown - change the owner and group of a symbolic link
=lchown - change the owner and group of a symbolic link
@f /functions/lcong48.html
@t lcong48 - seed a uniformly distributed pseudo-random signed long integer generator
=lcong48 - seed a uniformly distributed pseudo-random signed long integer generator
@f /functions/ldexp.html
@t ldexp, ldexpf, ldexpl - load exponent of a floating-point number
=ldexp, ldexpf, ldexpl - load exponent of a floating-point number
@f /functions/ldiv.html
@t ldiv, lldiv - compute quotient and remainder of a long division
=ldiv, lldiv - compute quotient and remainder of a long division
@f /functions/lfind.html
@t lfind - find entry in a linear search table
=lfind - find entry in a linear search table
@f /functions/lgamma.html