File: workmgr.o.info

package info (click to toggle)
ctwm 3.7-3.3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 6,420 kB
  • ctags: 3,180
  • sloc: ansic: 26,429; yacc: 1,004; lex: 147; makefile: 55; sh: 32
file content (1673 lines) | stat: -rw-r--r-- 162,729 bytes parent folder | download | duplicates (5)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
/* compiled from: . */
/* /usr/include/libio.h:403:NC */ extern int __underflow (_IO_FILE *);
/* /usr/include/libio.h:404:NC */ extern int __uflow (_IO_FILE *);
/* /usr/include/libio.h:405:NC */ extern int __overflow (_IO_FILE *, int);
/* /usr/include/libio.h:406:NC */ extern wint_t __wunderflow (_IO_FILE *);
/* /usr/include/libio.h:407:NC */ extern wint_t __wuflow (_IO_FILE *);
/* /usr/include/libio.h:408:NC */ extern wint_t __woverflow (_IO_FILE *, wint_t);
/* /usr/include/libio.h:433:NC */ extern int _IO_getc (_IO_FILE *);
/* /usr/include/libio.h:434:NC */ extern int _IO_putc (int, _IO_FILE *);
/* /usr/include/libio.h:435:NC */ extern int _IO_feof (_IO_FILE *);
/* /usr/include/libio.h:436:NC */ extern int _IO_ferror (_IO_FILE *);
/* /usr/include/libio.h:438:NC */ extern int _IO_peekc_locked (_IO_FILE *);
/* /usr/include/libio.h:444:NC */ extern void _IO_flockfile (_IO_FILE *);
/* /usr/include/libio.h:445:NC */ extern void _IO_funlockfile (_IO_FILE *);
/* /usr/include/libio.h:446:NC */ extern int _IO_ftrylockfile (_IO_FILE *);
/* /usr/include/libio.h:464:NC */ extern int _IO_vfscanf (_IO_FILE *, const char *, __gnuc_va_list, int *);
/* /usr/include/libio.h:466:NC */ extern int _IO_vfprintf (_IO_FILE *, const char *, __gnuc_va_list);
/* /usr/include/libio.h:467:NC */ extern __ssize_t _IO_padn (_IO_FILE *, int, __ssize_t);
/* /usr/include/libio.h:468:NC */ extern size_t _IO_sgetn (_IO_FILE *, void *, size_t);
/* /usr/include/libio.h:470:NC */ extern __off64_t _IO_seekoff (_IO_FILE *, __off64_t, int, int);
/* /usr/include/libio.h:471:NC */ extern __off64_t _IO_seekpos (_IO_FILE *, __off64_t, int);
/* /usr/include/libio.h:473:NC */ extern void _IO_free_backup_area (_IO_FILE *);
/* /usr/include/stdio.h:152:NC */ extern int remove (const char *);
/* /usr/include/stdio.h:154:NC */ extern int rename (const char *, const char *);
/* /usr/include/stdio.h:164:NC */ extern FILE *tmpfile (void);
/* /usr/include/stdio.h:178:NC */ extern char *tmpnam (char *);
/* /usr/include/stdio.h:184:NC */ extern char *tmpnam_r (char *);
/* /usr/include/stdio.h:197:NC */ extern char *tempnam (const char *, const char *);
/* /usr/include/stdio.h:206:NC */ extern int fclose (FILE *);
/* /usr/include/stdio.h:211:NC */ extern int fflush (FILE *);
/* /usr/include/stdio.h:221:NC */ extern int fflush_unlocked (FILE *);
/* /usr/include/stdio.h:242:NC */ extern FILE *fopen (const char *, const char *);
/* /usr/include/stdio.h:249:NC */ extern FILE *freopen (const char *, const char *, FILE *);
/* /usr/include/stdio.h:273:NC */ extern FILE *fdopen (int, const char *);
/* /usr/include/stdio.h:297:NC */ extern void setbuf (FILE *, char *);
/* /usr/include/stdio.h:302:NC */ extern int setvbuf (FILE *, char *, int, size_t);
/* /usr/include/stdio.h:309:NC */ extern void setbuffer (FILE *, char *, size_t);
/* /usr/include/stdio.h:312:NC */ extern void setlinebuf (FILE *);
/* /usr/include/stdio.h:322:NC */ extern int fprintf (FILE *, const char *, ...);
/* /usr/include/stdio.h:327:NC */ extern int printf (const char *, ...);
/* /usr/include/stdio.h:330:NC */ extern int sprintf (char *, const char *, ...);
/* /usr/include/stdio.h:337:NC */ extern int vfprintf (FILE *, const char *, __gnuc_va_list);
/* /usr/include/stdio.h:342:NC */ extern int vprintf (const char *, __gnuc_va_list);
/* /usr/include/stdio.h:345:NC */ extern int vsprintf (char *, const char *, __gnuc_va_list);
/* /usr/include/stdio.h:353:NC */ extern int snprintf (char *, size_t, const char *, ...);
/* /usr/include/stdio.h:357:NC */ extern int vsnprintf (char *, size_t, const char *, __gnuc_va_list);
/* /usr/include/stdio.h:394:NC */ extern int fscanf (FILE *, const char *, ...);
/* /usr/include/stdio.h:399:NC */ extern int scanf (const char *, ...);
/* /usr/include/stdio.h:402:NC */ extern int sscanf (const char *, const char *, ...);
/* /usr/include/stdio.h:435:NC */ extern int fgetc (FILE *);
/* /usr/include/stdio.h:436:NC */ extern int getc (FILE *);
/* /usr/include/stdio.h:442:NC */ extern int getchar (void);
/* /usr/include/stdio.h:454:NC */ extern int getc_unlocked (FILE *);
/* /usr/include/stdio.h:455:NC */ extern int getchar_unlocked (void);
/* /usr/include/stdio.h:465:NC */ extern int fgetc_unlocked (FILE *);
/* /usr/include/stdio.h:477:NC */ extern int fputc (int, FILE *);
/* /usr/include/stdio.h:478:NC */ extern int putc (int, FILE *);
/* /usr/include/stdio.h:484:NC */ extern int putchar (int);
/* /usr/include/stdio.h:498:NC */ extern int fputc_unlocked (int, FILE *);
/* /usr/include/stdio.h:506:NC */ extern int putc_unlocked (int, FILE *);
/* /usr/include/stdio.h:507:NC */ extern int putchar_unlocked (int);
/* /usr/include/stdio.h:514:NC */ extern int getw (FILE *);
/* /usr/include/stdio.h:517:NC */ extern int putw (int, FILE *);
/* /usr/include/stdio.h:526:NC */ extern char *fgets (char *, int, FILE *);
/* /usr/include/stdio.h:533:NC */ extern char *gets (char *);
/* /usr/include/stdio.h:583:NC */ extern int fputs (const char *, FILE *);
/* /usr/include/stdio.h:589:NC */ extern int puts (const char *);
/* /usr/include/stdio.h:596:NC */ extern int ungetc (int, FILE *);
/* /usr/include/stdio.h:604:NC */ extern size_t fread (void *, size_t, size_t, FILE *);
/* /usr/include/stdio.h:610:NC */ extern size_t fwrite (const void *, size_t, size_t, FILE *);
/* /usr/include/stdio.h:632:NC */ extern size_t fread_unlocked (void *, size_t, size_t, FILE *);
/* /usr/include/stdio.h:634:NC */ extern size_t fwrite_unlocked (const void *, size_t, size_t, FILE *);
/* /usr/include/stdio.h:643:NC */ extern int fseek (FILE *, long int, int);
/* /usr/include/stdio.h:648:NC */ extern long int ftell (FILE *);
/* /usr/include/stdio.h:653:NC */ extern void rewind (FILE *);
/* /usr/include/stdio.h:692:NC */ extern int fgetpos (FILE *, fpos_t *);
/* /usr/include/stdio.h:697:NC */ extern int fsetpos (FILE *, const fpos_t *);
/* /usr/include/stdio.h:720:NC */ extern void clearerr (FILE *);
/* /usr/include/stdio.h:722:NC */ extern int feof (FILE *);
/* /usr/include/stdio.h:724:NC */ extern int ferror (FILE *);
/* /usr/include/stdio.h:729:NC */ extern void clearerr_unlocked (FILE *);
/* /usr/include/stdio.h:730:NC */ extern int feof_unlocked (FILE *);
/* /usr/include/stdio.h:731:NC */ extern int ferror_unlocked (FILE *);
/* /usr/include/stdio.h:740:NC */ extern void perror (const char *);
/* /usr/include/stdio.h:752:NC */ extern int fileno (FILE *);
/* /usr/include/stdio.h:757:NC */ extern int fileno_unlocked (FILE *);
/* /usr/include/stdio.h:767:NC */ extern FILE *popen (const char *, const char *);
/* /usr/include/stdio.h:773:NC */ extern int pclose (FILE *);
/* /usr/include/stdio.h:779:NC */ extern char *ctermid (char *);
/* /usr/include/stdio.h:785:NC */ extern char *cuserid (char *);
/* /usr/include/stdio.h:807:NC */ extern void flockfile (FILE *);
/* /usr/include/stdio.h:811:NC */ extern int ftrylockfile (FILE *);
/* /usr/include/stdio.h:814:NC */ extern void funlockfile (FILE *);
/* /usr/include/getopt.h:154:NC */ extern int getopt (int, char *const *, const char *);
/* /usr/include/bits/stdio.h:35:NF */ extern int vprintf (const char *__fmt, __gnuc_va_list __arg); /* (__fmt, __arg) const char *__fmt; __gnuc_va_list __arg; */
/* /usr/include/bits/stdio.h:42:NF */ extern int getchar (void); /* () */
/* /usr/include/bits/stdio.h:51:NF */ extern int getc_unlocked (FILE *__fp); /* (__fp) FILE *__fp; */
/* /usr/include/bits/stdio.h:58:NF */ extern int getchar_unlocked (void); /* () */
/* /usr/include/bits/stdio.h:67:NF */ extern int putchar (int __c); /* (__c) int __c; */
/* /usr/include/bits/stdio.h:76:NF */ extern int fputc_unlocked (int __c, FILE *__stream); /* (__c, __stream) int __c; FILE *__stream; */
/* /usr/include/bits/stdio.h:86:NF */ extern int putc_unlocked (int __c, FILE *__stream); /* (__c, __stream) int __c; FILE *__stream; */
/* /usr/include/bits/stdio.h:93:NF */ extern int putchar_unlocked (int __c); /* (__c) int __c; */
/* /usr/include/bits/stdio.h:113:NF */ extern int feof_unlocked (FILE *__stream); /* (__stream) FILE *__stream; */
/* /usr/include/bits/stdio.h:120:NF */ extern int ferror_unlocked (FILE *__stream); /* (__stream) FILE *__stream; */
/* /usr/include/ctype.h:82:NC */ extern const short unsigned int **__ctype_b_loc (void);
/* /usr/include/ctype.h:84:NC */ extern const __int32_t **__ctype_tolower_loc (void);
/* /usr/include/ctype.h:86:NC */ extern const __int32_t **__ctype_toupper_loc (void);
/* /usr/include/ctype.h:102:NC */ extern int isalnum (int);
/* /usr/include/ctype.h:103:NC */ extern int isalpha (int);
/* /usr/include/ctype.h:104:NC */ extern int iscntrl (int);
/* /usr/include/ctype.h:105:NC */ extern int isdigit (int);
/* /usr/include/ctype.h:106:NC */ extern int islower (int);
/* /usr/include/ctype.h:107:NC */ extern int isgraph (int);
/* /usr/include/ctype.h:108:NC */ extern int isprint (int);
/* /usr/include/ctype.h:109:NC */ extern int ispunct (int);
/* /usr/include/ctype.h:110:NC */ extern int isspace (int);
/* /usr/include/ctype.h:111:NC */ extern int isupper (int);
/* /usr/include/ctype.h:112:NC */ extern int isxdigit (int);
/* /usr/include/ctype.h:116:NC */ extern int tolower (int);
/* /usr/include/ctype.h:119:NC */ extern int toupper (int);
/* /usr/include/ctype.h:142:NC */ extern int isascii (int);
/* /usr/include/ctype.h:146:NC */ extern int toascii (int);
/* /usr/include/ctype.h:150:NC */ extern int _toupper (int);
/* /usr/include/ctype.h:151:NC */ extern int _tolower (int);
/* /usr/include/ctype.h:192:NF */ extern int tolower (int __c); /* (__c) int __c; */
/* /usr/include/ctype.h:198:NF */ extern int toupper (int __c); /* (__c) int __c; */
/* /usr/include/sys/select.h:112:NC */ extern int select (int, fd_set *, fd_set *, fd_set *, struct timeval *);
/* /usr/X11R6/include/X11/Xlib.h:104:NC */ extern int _Xmblen (char *, int);
/* /usr/X11R6/include/X11/Xlib.h:1406:NC */ extern XFontStruct *XLoadQueryFont (Display *, const char *);
/* /usr/X11R6/include/X11/Xlib.h:1411:NC */ extern XFontStruct *XQueryFont (Display *, XID);
/* /usr/X11R6/include/X11/Xlib.h:1420:NC */ extern XTimeCoord *XGetMotionEvents (Display *, Window, Time, Time, int *);
/* /usr/X11R6/include/X11/Xlib.h:1430:NC */ extern XModifierKeymap *XDeleteModifiermapEntry (XModifierKeymap *, KeyCode, int);
/* /usr/X11R6/include/X11/Xlib.h:1434:NC */ extern XModifierKeymap *XGetModifierMapping (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1444:NC */ extern XModifierKeymap *XInsertModifiermapEntry (XModifierKeymap *, KeyCode, int);
/* /usr/X11R6/include/X11/Xlib.h:1448:NC */ extern XModifierKeymap *XNewModifiermap (int);
/* /usr/X11R6/include/X11/Xlib.h:1461:NC */ extern XImage *XCreateImage (Display *, Visual *, unsigned int, int, int, char *, unsigned int, unsigned int, int, int);
/* /usr/X11R6/include/X11/Xlib.h:1464:NC */ extern int XInitImage (XImage *);
/* /usr/X11R6/include/X11/Xlib.h:1474:NC */ extern XImage *XGetImage (Display *, Drawable, int, int, unsigned int, unsigned int, long unsigned int, int);
/* /usr/X11R6/include/X11/Xlib.h:1487:NC */ extern XImage *XGetSubImage (Display *, Drawable, int, int, unsigned int, unsigned int, long unsigned int, int, XImage *, int, int);
/* /usr/X11R6/include/X11/Xlib.h:1494:NC */ extern Display *XOpenDisplay (const char *);
/* /usr/X11R6/include/X11/Xlib.h:1498:NC */ extern void XrmInitialize (void);
/* /usr/X11R6/include/X11/Xlib.h:1503:NC */ extern char *XFetchBytes (Display *, int *);
/* /usr/X11R6/include/X11/Xlib.h:1508:NC */ extern char *XFetchBuffer (Display *, int *, int);
/* /usr/X11R6/include/X11/Xlib.h:1512:NC */ extern char *XGetAtomName (Display *, Atom);
/* /usr/X11R6/include/X11/Xlib.h:1518:NC */ extern int XGetAtomNames (Display *, Atom *, int, char **);
/* /usr/X11R6/include/X11/Xlib.h:1523:NC */ extern char *XGetDefault (Display *, const char *, const char *);
/* /usr/X11R6/include/X11/Xlib.h:1526:NC */ extern char *XDisplayName (const char *);
/* /usr/X11R6/include/X11/Xlib.h:1529:NC */ extern char *XKeysymToString (KeySym);
/* /usr/X11R6/include/X11/Xlib.h:1536:NC */ extern int (*XSynchronize (Display *, int)) (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1544:NC */ extern int (*XSetAfterFunction (Display *, int (*) (Display *))) (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1549:NC */ extern Atom XInternAtom (Display *, const char *, int);
/* /usr/X11R6/include/X11/Xlib.h:1556:NC */ extern int XInternAtoms (Display *, char **, int, int, Atom *);
/* /usr/X11R6/include/X11/Xlib.h:1560:NC */ extern Colormap XCopyColormapAndFree (Display *, Colormap);
/* /usr/X11R6/include/X11/Xlib.h:1566:NC */ extern Colormap XCreateColormap (Display *, Window, Visual *, int);
/* /usr/X11R6/include/X11/Xlib.h:1575:NC */ extern Cursor XCreatePixmapCursor (Display *, Pixmap, Pixmap, XColor *, XColor *, unsigned int, unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:1584:NC */ extern Cursor XCreateGlyphCursor (Display *, Font, Font, unsigned int, unsigned int, const XColor *, const XColor *);
/* /usr/X11R6/include/X11/Xlib.h:1588:NC */ extern Cursor XCreateFontCursor (Display *, unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:1592:NC */ extern Font XLoadFont (Display *, const char *);
/* /usr/X11R6/include/X11/Xlib.h:1598:NC */ extern GC XCreateGC (Display *, Drawable, long unsigned int, XGCValues *);
/* /usr/X11R6/include/X11/Xlib.h:1601:NC */ extern GContext XGContextFromGC (GC);
/* /usr/X11R6/include/X11/Xlib.h:1605:NC */ extern void XFlushGC (Display *, GC);
/* /usr/X11R6/include/X11/Xlib.h:1612:NC */ extern Pixmap XCreatePixmap (Display *, Drawable, unsigned int, unsigned int, unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:1619:NC */ extern Pixmap XCreateBitmapFromData (Display *, Drawable, const char *, unsigned int, unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:1629:NC */ extern Pixmap XCreatePixmapFromBitmapData (Display *, Drawable, char *, unsigned int, unsigned int, long unsigned int, long unsigned int, unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:1640:NC */ extern Window XCreateSimpleWindow (Display *, Window, int, int, unsigned int, unsigned int, unsigned int, long unsigned int, long unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:1644:NC */ extern Window XGetSelectionOwner (Display *, Atom);
/* /usr/X11R6/include/X11/Xlib.h:1658:NC */ extern Window XCreateWindow (Display *, Window, int, int, unsigned int, unsigned int, unsigned int, int, unsigned int, Visual *, long unsigned int, XSetWindowAttributes *);
/* /usr/X11R6/include/X11/Xlib.h:1663:NC */ extern Colormap *XListInstalledColormaps (Display *, Window, int *);
/* /usr/X11R6/include/X11/Xlib.h:1669:NC */ extern char **XListFonts (Display *, const char *, int, int *);
/* /usr/X11R6/include/X11/Xlib.h:1676:NC */ extern char **XListFontsWithInfo (Display *, const char *, int, int *, XFontStruct **);
/* /usr/X11R6/include/X11/Xlib.h:1680:NC */ extern char **XGetFontPath (Display *, int *);
/* /usr/X11R6/include/X11/Xlib.h:1684:NC */ extern char **XListExtensions (Display *, int *);
/* /usr/X11R6/include/X11/Xlib.h:1689:NC */ extern Atom *XListProperties (Display *, Window, int *);
/* /usr/X11R6/include/X11/Xlib.h:1694:NC */ extern XHostAddress *XListHosts (Display *, int *, int *);
/* /usr/X11R6/include/X11/Xlib.h:1703:NC */ extern KeySym XKeycodeToKeysym (Display *, KeyCode, int);
/* /usr/X11R6/include/X11/Xlib.h:1707:NC */ extern KeySym XLookupKeysym (XKeyEvent *, int);
/* /usr/X11R6/include/X11/Xlib.h:1717:NC */ extern KeySym *XGetKeyboardMapping (Display *, KeyCode, int, int *);
/* /usr/X11R6/include/X11/Xlib.h:1720:NC */ extern KeySym XStringToKeysym (const char *);
/* /usr/X11R6/include/X11/Xlib.h:1723:NC */ extern long int XMaxRequestSize (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1726:NC */ extern long int XExtendedMaxRequestSize (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1729:NC */ extern char *XResourceManagerString (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1732:NC */ extern char *XScreenResourceString (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:1735:NC */ extern long unsigned int XDisplayMotionBufferSize (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1738:NC */ extern VisualID XVisualIDFromVisual (Visual *);
/* /usr/X11R6/include/X11/Xlib.h:1744:NC */ extern int XInitThreads (void);
/* /usr/X11R6/include/X11/Xlib.h:1748:NC */ extern void XLockDisplay (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1752:NC */ extern void XUnlockDisplay (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1759:NC */ extern XExtCodes *XInitExtension (Display *, const char *);
/* /usr/X11R6/include/X11/Xlib.h:1763:NC */ extern XExtCodes *XAddExtension (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1767:NC */ extern XExtData *XFindOnExtensionList (XExtData **, int);
/* /usr/X11R6/include/X11/Xlib.h:1770:NC */ extern XExtData **XEHeadOfExtensionList (XEDataObject);
/* /usr/X11R6/include/X11/Xlib.h:1776:NC */ extern Window XRootWindow (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:1779:NC */ extern Window XDefaultRootWindow (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1782:NC */ extern Window XRootWindowOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:1786:NC */ extern Visual *XDefaultVisual (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:1789:NC */ extern Visual *XDefaultVisualOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:1793:NC */ extern GC XDefaultGC (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:1796:NC */ extern GC XDefaultGCOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:1800:NC */ extern long unsigned int XBlackPixel (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:1804:NC */ extern long unsigned int XWhitePixel (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:1807:NC */ extern long unsigned int XAllPlanes (void);
/* /usr/X11R6/include/X11/Xlib.h:1810:NC */ extern long unsigned int XBlackPixelOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:1813:NC */ extern long unsigned int XWhitePixelOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:1816:NC */ extern long unsigned int XNextRequest (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1819:NC */ extern long unsigned int XLastKnownRequestProcessed (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1822:NC */ extern char *XServerVendor (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1825:NC */ extern char *XDisplayString (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1829:NC */ extern Colormap XDefaultColormap (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:1832:NC */ extern Colormap XDefaultColormapOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:1835:NC */ extern Display *XDisplayOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:1839:NC */ extern Screen *XScreenOfDisplay (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:1842:NC */ extern Screen *XDefaultScreenOfDisplay (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1845:NC */ extern long int XEventMaskOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:1849:NC */ extern int XScreenNumberOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:1858:NC */ extern XErrorHandler XSetErrorHandler (XErrorHandler);
/* /usr/X11R6/include/X11/Xlib.h:1867:NC */ extern XIOErrorHandler XSetIOErrorHandler (XIOErrorHandler);
/* /usr/X11R6/include/X11/Xlib.h:1873:NC */ extern XPixmapFormatValues *XListPixmapFormats (Display *, int *);
/* /usr/X11R6/include/X11/Xlib.h:1878:NC */ extern int *XListDepths (Display *, int, int *);
/* /usr/X11R6/include/X11/Xlib.h:1888:NC */ extern int XReconfigureWMWindow (Display *, Window, int, unsigned int, XWindowChanges *);
/* /usr/X11R6/include/X11/Xlib.h:1895:NC */ extern int XGetWMProtocols (Display *, Window, Atom **, int *);
/* /usr/X11R6/include/X11/Xlib.h:1901:NC */ extern int XSetWMProtocols (Display *, Window, Atom *, int);
/* /usr/X11R6/include/X11/Xlib.h:1906:NC */ extern int XIconifyWindow (Display *, Window, int);
/* /usr/X11R6/include/X11/Xlib.h:1911:NC */ extern int XWithdrawWindow (Display *, Window, int);
/* /usr/X11R6/include/X11/Xlib.h:1917:NC */ extern int XGetCommand (Display *, Window, char ***, int *);
/* /usr/X11R6/include/X11/Xlib.h:1923:NC */ extern int XGetWMColormapWindows (Display *, Window, Window **, int *);
/* /usr/X11R6/include/X11/Xlib.h:1929:NC */ extern int XSetWMColormapWindows (Display *, Window, Window *, int);
/* /usr/X11R6/include/X11/Xlib.h:1932:NC */ extern void XFreeStringList (char **);
/* /usr/X11R6/include/X11/Xlib.h:1937:NC */ extern int XSetTransientForHint (Display *, Window, Window);
/* /usr/X11R6/include/X11/Xlib.h:1943:NC */ extern int XActivateScreenSaver (Display *);
/* /usr/X11R6/include/X11/Xlib.h:1948:NC */ extern int XAddHost (Display *, XHostAddress *);
/* /usr/X11R6/include/X11/Xlib.h:1954:NC */ extern int XAddHosts (Display *, XHostAddress *, int);
/* /usr/X11R6/include/X11/Xlib.h:1959:NC */ extern int XAddToExtensionList (struct _XExtData **, XExtData *);
/* /usr/X11R6/include/X11/Xlib.h:1964:NC */ extern int XAddToSaveSet (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:1970:NC */ extern int XAllocColor (Display *, Colormap, XColor *);
/* /usr/X11R6/include/X11/Xlib.h:1980:NC */ extern int XAllocColorCells (Display *, Colormap, int, long unsigned int *, unsigned int, long unsigned int *, unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:1994:NC */ extern int XAllocColorPlanes (Display *, Colormap, int, long unsigned int *, int, int, int, int, long unsigned int *, long unsigned int *, long unsigned int *);
/* /usr/X11R6/include/X11/Xlib.h:2002:NC */ extern int XAllocNamedColor (Display *, Colormap, const char *, XColor *, XColor *);
/* /usr/X11R6/include/X11/Xlib.h:2008:NC */ extern int XAllowEvents (Display *, int, Time);
/* /usr/X11R6/include/X11/Xlib.h:2012:NC */ extern int XAutoRepeatOff (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2016:NC */ extern int XAutoRepeatOn (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2021:NC */ extern int XBell (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:2025:NC */ extern int XBitmapBitOrder (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2029:NC */ extern int XBitmapPad (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2033:NC */ extern int XBitmapUnit (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2037:NC */ extern int XCellsOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:2044:NC */ extern int XChangeActivePointerGrab (Display *, unsigned int, Cursor, Time);
/* /usr/X11R6/include/X11/Xlib.h:2051:NC */ extern int XChangeGC (Display *, GC, long unsigned int, XGCValues *);
/* /usr/X11R6/include/X11/Xlib.h:2057:NC */ extern int XChangeKeyboardControl (Display *, long unsigned int, XKeyboardControl *);
/* /usr/X11R6/include/X11/Xlib.h:2065:NC */ extern int XChangeKeyboardMapping (Display *, int, int, KeySym *, int);
/* /usr/X11R6/include/X11/Xlib.h:2074:NC */ extern int XChangePointerControl (Display *, int, int, int, int, int);
/* /usr/X11R6/include/X11/Xlib.h:2085:NC */ extern int XChangeProperty (Display *, Window, Atom, Atom, int, int, const unsigned char *, int);
/* /usr/X11R6/include/X11/Xlib.h:2091:NC */ extern int XChangeSaveSet (Display *, Window, int);
/* /usr/X11R6/include/X11/Xlib.h:2098:NC */ extern int XChangeWindowAttributes (Display *, Window, long unsigned int, XSetWindowAttributes *);
/* /usr/X11R6/include/X11/Xlib.h:2109:NC */ extern int XCheckIfEvent (Display *, XEvent *, int (*) (Display *, XEvent *, XPointer), XPointer);
/* /usr/X11R6/include/X11/Xlib.h:2115:NC */ extern int XCheckMaskEvent (Display *, long int, XEvent *);
/* /usr/X11R6/include/X11/Xlib.h:2121:NC */ extern int XCheckTypedEvent (Display *, int, XEvent *);
/* /usr/X11R6/include/X11/Xlib.h:2128:NC */ extern int XCheckTypedWindowEvent (Display *, Window, int, XEvent *);
/* /usr/X11R6/include/X11/Xlib.h:2135:NC */ extern int XCheckWindowEvent (Display *, Window, long int, XEvent *);
/* /usr/X11R6/include/X11/Xlib.h:2141:NC */ extern int XCirculateSubwindows (Display *, Window, int);
/* /usr/X11R6/include/X11/Xlib.h:2146:NC */ extern int XCirculateSubwindowsDown (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:2151:NC */ extern int XCirculateSubwindowsUp (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:2161:NC */ extern int XClearArea (Display *, Window, int, int, unsigned int, unsigned int, int);
/* /usr/X11R6/include/X11/Xlib.h:2166:NC */ extern int XClearWindow (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:2170:NC */ extern int XCloseDisplay (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2177:NC */ extern int XConfigureWindow (Display *, Window, unsigned int, XWindowChanges *);
/* /usr/X11R6/include/X11/Xlib.h:2181:NC */ extern int XConnectionNumber (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2190:NC */ extern int XConvertSelection (Display *, Atom, Atom, Atom, Window, Time);
/* /usr/X11R6/include/X11/Xlib.h:2203:NC */ extern int XCopyArea (Display *, Drawable, Drawable, GC, int, int, unsigned int, unsigned int, int, int);
/* /usr/X11R6/include/X11/Xlib.h:2210:NC */ extern int XCopyGC (Display *, GC, long unsigned int, GC);
/* /usr/X11R6/include/X11/Xlib.h:2224:NC */ extern int XCopyPlane (Display *, Drawable, Drawable, GC, int, int, unsigned int, unsigned int, int, int, long unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:2229:NC */ extern int XDefaultDepth (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:2233:NC */ extern int XDefaultDepthOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:2237:NC */ extern int XDefaultScreen (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2243:NC */ extern int XDefineCursor (Display *, Window, Cursor);
/* /usr/X11R6/include/X11/Xlib.h:2249:NC */ extern int XDeleteProperty (Display *, Window, Atom);
/* /usr/X11R6/include/X11/Xlib.h:2254:NC */ extern int XDestroyWindow (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:2259:NC */ extern int XDestroySubwindows (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:2263:NC */ extern int XDoesBackingStore (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:2267:NC */ extern int XDoesSaveUnders (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:2271:NC */ extern int XDisableAccessControl (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2277:NC */ extern int XDisplayCells (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:2282:NC */ extern int XDisplayHeight (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:2287:NC */ extern int XDisplayHeightMM (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:2293:NC */ extern int XDisplayKeycodes (Display *, int *, int *);
/* /usr/X11R6/include/X11/Xlib.h:2298:NC */ extern int XDisplayPlanes (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:2303:NC */ extern int XDisplayWidth (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:2308:NC */ extern int XDisplayWidthMM (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:2320:NC */ extern int XDrawArc (Display *, Drawable, GC, int, int, unsigned int, unsigned int, int, int);
/* /usr/X11R6/include/X11/Xlib.h:2328:NC */ extern int XDrawArcs (Display *, Drawable, GC, XArc *, int);
/* /usr/X11R6/include/X11/Xlib.h:2338:NC */ extern int XDrawImageString (Display *, Drawable, GC, int, int, const char *, int);
/* /usr/X11R6/include/X11/Xlib.h:2348:NC */ extern int XDrawImageString16 (Display *, Drawable, GC, int, int, const XChar2b *, int);
/* /usr/X11R6/include/X11/Xlib.h:2358:NC */ extern int XDrawLine (Display *, Drawable, GC, int, int, int, int);
/* /usr/X11R6/include/X11/Xlib.h:2367:NC */ extern int XDrawLines (Display *, Drawable, GC, XPoint *, int, int);
/* /usr/X11R6/include/X11/Xlib.h:2375:NC */ extern int XDrawPoint (Display *, Drawable, GC, int, int);
/* /usr/X11R6/include/X11/Xlib.h:2384:NC */ extern int XDrawPoints (Display *, Drawable, GC, XPoint *, int, int);
/* /usr/X11R6/include/X11/Xlib.h:2394:NC */ extern int XDrawRectangle (Display *, Drawable, GC, int, int, unsigned int, unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:2402:NC */ extern int XDrawRectangles (Display *, Drawable, GC, XRectangle *, int);
/* /usr/X11R6/include/X11/Xlib.h:2410:NC */ extern int XDrawSegments (Display *, Drawable, GC, XSegment *, int);
/* /usr/X11R6/include/X11/Xlib.h:2420:NC */ extern int XDrawString (Display *, Drawable, GC, int, int, const char *, int);
/* /usr/X11R6/include/X11/Xlib.h:2430:NC */ extern int XDrawString16 (Display *, Drawable, GC, int, int, const XChar2b *, int);
/* /usr/X11R6/include/X11/Xlib.h:2440:NC */ extern int XDrawText (Display *, Drawable, GC, int, int, XTextItem *, int);
/* /usr/X11R6/include/X11/Xlib.h:2450:NC */ extern int XDrawText16 (Display *, Drawable, GC, int, int, XTextItem16 *, int);
/* /usr/X11R6/include/X11/Xlib.h:2454:NC */ extern int XEnableAccessControl (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2459:NC */ extern int XEventsQueued (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:2465:NC */ extern int XFetchName (Display *, Window, char **);
/* /usr/X11R6/include/X11/Xlib.h:2477:NC */ extern int XFillArc (Display *, Drawable, GC, int, int, unsigned int, unsigned int, int, int);
/* /usr/X11R6/include/X11/Xlib.h:2485:NC */ extern int XFillArcs (Display *, Drawable, GC, XArc *, int);
/* /usr/X11R6/include/X11/Xlib.h:2495:NC */ extern int XFillPolygon (Display *, Drawable, GC, XPoint *, int, int, int);
/* /usr/X11R6/include/X11/Xlib.h:2505:NC */ extern int XFillRectangle (Display *, Drawable, GC, int, int, unsigned int, unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:2513:NC */ extern int XFillRectangles (Display *, Drawable, GC, XRectangle *, int);
/* /usr/X11R6/include/X11/Xlib.h:2517:NC */ extern int XFlush (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2522:NC */ extern int XForceScreenSaver (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:2526:NC */ extern int XFree (void *);
/* /usr/X11R6/include/X11/Xlib.h:2531:NC */ extern int XFreeColormap (Display *, Colormap);
/* /usr/X11R6/include/X11/Xlib.h:2539:NC */ extern int XFreeColors (Display *, Colormap, long unsigned int *, int, long unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:2544:NC */ extern int XFreeCursor (Display *, Cursor);
/* /usr/X11R6/include/X11/Xlib.h:2548:NC */ extern int XFreeExtensionList (char **);
/* /usr/X11R6/include/X11/Xlib.h:2553:NC */ extern int XFreeFont (Display *, XFontStruct *);
/* /usr/X11R6/include/X11/Xlib.h:2559:NC */ extern int XFreeFontInfo (char **, XFontStruct *, int);
/* /usr/X11R6/include/X11/Xlib.h:2563:NC */ extern int XFreeFontNames (char **);
/* /usr/X11R6/include/X11/Xlib.h:2567:NC */ extern int XFreeFontPath (char **);
/* /usr/X11R6/include/X11/Xlib.h:2572:NC */ extern int XFreeGC (Display *, GC);
/* /usr/X11R6/include/X11/Xlib.h:2576:NC */ extern int XFreeModifiermap (XModifierKeymap *);
/* /usr/X11R6/include/X11/Xlib.h:2581:NC */ extern int XFreePixmap (Display *, Pixmap);
/* /usr/X11R6/include/X11/Xlib.h:2597:NC */ extern int XGeometry (Display *, int, const char *, const char *, unsigned int, unsigned int, unsigned int, int, int, int *, int *, int *, int *);
/* /usr/X11R6/include/X11/Xlib.h:2606:NC */ extern int XGetErrorDatabaseText (Display *, const char *, const char *, const char *, char *, int);
/* /usr/X11R6/include/X11/Xlib.h:2613:NC */ extern int XGetErrorText (Display *, int, char *, int);
/* /usr/X11R6/include/X11/Xlib.h:2619:NC */ extern int XGetFontProperty (XFontStruct *, Atom, long unsigned int *);
/* /usr/X11R6/include/X11/Xlib.h:2626:NC */ extern int XGetGCValues (Display *, GC, long unsigned int, XGCValues *);
/* /usr/X11R6/include/X11/Xlib.h:2638:NC */ extern int XGetGeometry (Display *, Drawable, Window *, int *, int *, unsigned int *, unsigned int *, unsigned int *, unsigned int *);
/* /usr/X11R6/include/X11/Xlib.h:2644:NC */ extern int XGetIconName (Display *, Window, char **);
/* /usr/X11R6/include/X11/Xlib.h:2650:NC */ extern int XGetInputFocus (Display *, Window *, int *);
/* /usr/X11R6/include/X11/Xlib.h:2655:NC */ extern int XGetKeyboardControl (Display *, XKeyboardState *);
/* /usr/X11R6/include/X11/Xlib.h:2662:NC */ extern int XGetPointerControl (Display *, int *, int *, int *);
/* /usr/X11R6/include/X11/Xlib.h:2668:NC */ extern int XGetPointerMapping (Display *, unsigned char *, int);
/* /usr/X11R6/include/X11/Xlib.h:2676:NC */ extern int XGetScreenSaver (Display *, int *, int *, int *, int *);
/* /usr/X11R6/include/X11/Xlib.h:2682:NC */ extern int XGetTransientForHint (Display *, Window, Window *);
/* /usr/X11R6/include/X11/Xlib.h:2697:NC */ extern int XGetWindowProperty (Display *, Window, Atom, long int, long int, int, Atom, Atom *, int *, long unsigned int *, long unsigned int *, unsigned char **);
/* /usr/X11R6/include/X11/Xlib.h:2703:NC */ extern int XGetWindowAttributes (Display *, Window, XWindowAttributes *);
/* /usr/X11R6/include/X11/Xlib.h:2716:NC */ extern int XGrabButton (Display *, unsigned int, unsigned int, Window, int, unsigned int, int, int, Window, Cursor);
/* /usr/X11R6/include/X11/Xlib.h:2726:NC */ extern int XGrabKey (Display *, int, unsigned int, Window, int, int, int);
/* /usr/X11R6/include/X11/Xlib.h:2735:NC */ extern int XGrabKeyboard (Display *, Window, int, int, int, Time);
/* /usr/X11R6/include/X11/Xlib.h:2747:NC */ extern int XGrabPointer (Display *, Window, int, unsigned int, int, int, Window, Cursor, Time);
/* /usr/X11R6/include/X11/Xlib.h:2751:NC */ extern int XGrabServer (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2755:NC */ extern int XHeightMMOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:2759:NC */ extern int XHeightOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:2770:NC */ extern int XIfEvent (Display *, XEvent *, int (*) (Display *, XEvent *, XPointer), XPointer);
/* /usr/X11R6/include/X11/Xlib.h:2774:NC */ extern int XImageByteOrder (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2779:NC */ extern int XInstallColormap (Display *, Colormap);
/* /usr/X11R6/include/X11/Xlib.h:2784:NC */ extern KeyCode XKeysymToKeycode (Display *, KeySym);
/* /usr/X11R6/include/X11/Xlib.h:2789:NC */ extern int XKillClient (Display *, XID);
/* /usr/X11R6/include/X11/Xlib.h:2797:NC */ extern int XLookupColor (Display *, Colormap, const char *, XColor *, XColor *);
/* /usr/X11R6/include/X11/Xlib.h:2802:NC */ extern int XLowerWindow (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:2807:NC */ extern int XMapRaised (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:2812:NC */ extern int XMapSubwindows (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:2817:NC */ extern int XMapWindow (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:2823:NC */ extern int XMaskEvent (Display *, long int, XEvent *);
/* /usr/X11R6/include/X11/Xlib.h:2827:NC */ extern int XMaxCmapsOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:2831:NC */ extern int XMinCmapsOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:2840:NC */ extern int XMoveResizeWindow (Display *, Window, int, int, unsigned int, unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:2847:NC */ extern int XMoveWindow (Display *, Window, int, int);
/* /usr/X11R6/include/X11/Xlib.h:2852:NC */ extern int XNextEvent (Display *, XEvent *);
/* /usr/X11R6/include/X11/Xlib.h:2856:NC */ extern int XNoOp (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2863:NC */ extern int XParseColor (Display *, Colormap, const char *, XColor *);
/* /usr/X11R6/include/X11/Xlib.h:2871:NC */ extern int XParseGeometry (const char *, int *, int *, unsigned int *, unsigned int *);
/* /usr/X11R6/include/X11/Xlib.h:2876:NC */ extern int XPeekEvent (Display *, XEvent *);
/* /usr/X11R6/include/X11/Xlib.h:2887:NC */ extern int XPeekIfEvent (Display *, XEvent *, int (*) (Display *, XEvent *, XPointer), XPointer);
/* /usr/X11R6/include/X11/Xlib.h:2891:NC */ extern int XPending (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2895:NC */ extern int XPlanesOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:2899:NC */ extern int XProtocolRevision (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2903:NC */ extern int XProtocolVersion (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2909:NC */ extern int XPutBackEvent (Display *, XEvent *);
/* /usr/X11R6/include/X11/Xlib.h:2922:NC */ extern int XPutImage (Display *, Drawable, GC, XImage *, int, int, int, int, unsigned int, unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:2926:NC */ extern int XQLength (Display *);
/* /usr/X11R6/include/X11/Xlib.h:2935:NC */ extern int XQueryBestCursor (Display *, Drawable, unsigned int, unsigned int, unsigned int *, unsigned int *);
/* /usr/X11R6/include/X11/Xlib.h:2945:NC */ extern int XQueryBestSize (Display *, int, Drawable, unsigned int, unsigned int, unsigned int *, unsigned int *);
/* /usr/X11R6/include/X11/Xlib.h:2954:NC */ extern int XQueryBestStipple (Display *, Drawable, unsigned int, unsigned int, unsigned int *, unsigned int *);
/* /usr/X11R6/include/X11/Xlib.h:2963:NC */ extern int XQueryBestTile (Display *, Drawable, unsigned int, unsigned int, unsigned int *, unsigned int *);
/* /usr/X11R6/include/X11/Xlib.h:2969:NC */ extern int XQueryColor (Display *, Colormap, XColor *);
/* /usr/X11R6/include/X11/Xlib.h:2976:NC */ extern int XQueryColors (Display *, Colormap, XColor *, int);
/* /usr/X11R6/include/X11/Xlib.h:2984:NC */ extern int XQueryExtension (Display *, const char *, int *, int *, int *);
/* /usr/X11R6/include/X11/Xlib.h:2989:NC */ extern int XQueryKeymap (Display *, char *);
/* /usr/X11R6/include/X11/Xlib.h:3001:NC */ extern int XQueryPointer (Display *, Window, Window *, Window *, int *, int *, int *, int *, unsigned int *);
/* /usr/X11R6/include/X11/Xlib.h:3012:NC */ extern int XQueryTextExtents (Display *, XID, const char *, int, int *, int *, int *, XCharStruct *);
/* /usr/X11R6/include/X11/Xlib.h:3023:NC */ extern int XQueryTextExtents16 (Display *, XID, const XChar2b *, int, int *, int *, int *, XCharStruct *);
/* /usr/X11R6/include/X11/Xlib.h:3032:NC */ extern int XQueryTree (Display *, Window, Window *, Window *, Window **, unsigned int *);
/* /usr/X11R6/include/X11/Xlib.h:3037:NC */ extern int XRaiseWindow (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:3048:NC */ extern int XReadBitmapFile (Display *, Drawable, const char *, unsigned int *, unsigned int *, Pixmap *, int *, int *);
/* /usr/X11R6/include/X11/Xlib.h:3057:NC */ extern int XReadBitmapFileData (const char *, unsigned int *, unsigned int *, unsigned char **, int *, int *);
/* /usr/X11R6/include/X11/Xlib.h:3066:NC */ extern int XRebindKeysym (Display *, KeySym, KeySym *, int, const unsigned char *, int);
/* /usr/X11R6/include/X11/Xlib.h:3073:NC */ extern int XRecolorCursor (Display *, Cursor, XColor *, XColor *);
/* /usr/X11R6/include/X11/Xlib.h:3077:NC */ extern int XRefreshKeyboardMapping (XMappingEvent *);
/* /usr/X11R6/include/X11/Xlib.h:3082:NC */ extern int XRemoveFromSaveSet (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:3087:NC */ extern int XRemoveHost (Display *, XHostAddress *);
/* /usr/X11R6/include/X11/Xlib.h:3093:NC */ extern int XRemoveHosts (Display *, XHostAddress *, int);
/* /usr/X11R6/include/X11/Xlib.h:3101:NC */ extern int XReparentWindow (Display *, Window, Window, int, int);
/* /usr/X11R6/include/X11/Xlib.h:3105:NC */ extern int XResetScreenSaver (Display *);
/* /usr/X11R6/include/X11/Xlib.h:3112:NC */ extern int XResizeWindow (Display *, Window, unsigned int, unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:3118:NC */ extern int XRestackWindows (Display *, Window *, int);
/* /usr/X11R6/include/X11/Xlib.h:3123:NC */ extern int XRotateBuffers (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:3131:NC */ extern int XRotateWindowProperties (Display *, Window, Atom *, int, int);
/* /usr/X11R6/include/X11/Xlib.h:3135:NC */ extern int XScreenCount (Display *);
/* /usr/X11R6/include/X11/Xlib.h:3141:NC */ extern int XSelectInput (Display *, Window, long int);
/* /usr/X11R6/include/X11/Xlib.h:3149:NC */ extern int XSendEvent (Display *, Window, int, long int, XEvent *);
/* /usr/X11R6/include/X11/Xlib.h:3154:NC */ extern int XSetAccessControl (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:3160:NC */ extern int XSetArcMode (Display *, GC, int);
/* /usr/X11R6/include/X11/Xlib.h:3166:NC */ extern int XSetBackground (Display *, GC, long unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:3172:NC */ extern int XSetClipMask (Display *, GC, Pixmap);
/* /usr/X11R6/include/X11/Xlib.h:3179:NC */ extern int XSetClipOrigin (Display *, GC, int, int);
/* /usr/X11R6/include/X11/Xlib.h:3189:NC */ extern int XSetClipRectangles (Display *, GC, int, int, XRectangle *, int, int);
/* /usr/X11R6/include/X11/Xlib.h:3194:NC */ extern int XSetCloseDownMode (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:3201:NC */ extern int XSetCommand (Display *, Window, char **, int);
/* /usr/X11R6/include/X11/Xlib.h:3209:NC */ extern int XSetDashes (Display *, GC, int, const char *, int);
/* /usr/X11R6/include/X11/Xlib.h:3215:NC */ extern int XSetFillRule (Display *, GC, int);
/* /usr/X11R6/include/X11/Xlib.h:3221:NC */ extern int XSetFillStyle (Display *, GC, int);
/* /usr/X11R6/include/X11/Xlib.h:3227:NC */ extern int XSetFont (Display *, GC, Font);
/* /usr/X11R6/include/X11/Xlib.h:3233:NC */ extern int XSetFontPath (Display *, char **, int);
/* /usr/X11R6/include/X11/Xlib.h:3239:NC */ extern int XSetForeground (Display *, GC, long unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:3245:NC */ extern int XSetFunction (Display *, GC, int);
/* /usr/X11R6/include/X11/Xlib.h:3251:NC */ extern int XSetGraphicsExposures (Display *, GC, int);
/* /usr/X11R6/include/X11/Xlib.h:3257:NC */ extern int XSetIconName (Display *, Window, const char *);
/* /usr/X11R6/include/X11/Xlib.h:3264:NC */ extern int XSetInputFocus (Display *, Window, int, Time);
/* /usr/X11R6/include/X11/Xlib.h:3273:NC */ extern int XSetLineAttributes (Display *, GC, unsigned int, int, int, int);
/* /usr/X11R6/include/X11/Xlib.h:3278:NC */ extern int XSetModifierMapping (Display *, XModifierKeymap *);
/* /usr/X11R6/include/X11/Xlib.h:3284:NC */ extern int XSetPlaneMask (Display *, GC, long unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:3290:NC */ extern int XSetPointerMapping (Display *, const unsigned char *, int);
/* /usr/X11R6/include/X11/Xlib.h:3298:NC */ extern int XSetScreenSaver (Display *, int, int, int, int);
/* /usr/X11R6/include/X11/Xlib.h:3305:NC */ extern int XSetSelectionOwner (Display *, Atom, Window, Time);
/* /usr/X11R6/include/X11/Xlib.h:3314:NC */ extern int XSetState (Display *, GC, long unsigned int, long unsigned int, int, long unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:3320:NC */ extern int XSetStipple (Display *, GC, Pixmap);
/* /usr/X11R6/include/X11/Xlib.h:3326:NC */ extern int XSetSubwindowMode (Display *, GC, int);
/* /usr/X11R6/include/X11/Xlib.h:3333:NC */ extern int XSetTSOrigin (Display *, GC, int, int);
/* /usr/X11R6/include/X11/Xlib.h:3339:NC */ extern int XSetTile (Display *, GC, Pixmap);
/* /usr/X11R6/include/X11/Xlib.h:3345:NC */ extern int XSetWindowBackground (Display *, Window, long unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:3351:NC */ extern int XSetWindowBackgroundPixmap (Display *, Window, Pixmap);
/* /usr/X11R6/include/X11/Xlib.h:3357:NC */ extern int XSetWindowBorder (Display *, Window, long unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:3363:NC */ extern int XSetWindowBorderPixmap (Display *, Window, Pixmap);
/* /usr/X11R6/include/X11/Xlib.h:3369:NC */ extern int XSetWindowBorderWidth (Display *, Window, unsigned int);
/* /usr/X11R6/include/X11/Xlib.h:3375:NC */ extern int XSetWindowColormap (Display *, Window, Colormap);
/* /usr/X11R6/include/X11/Xlib.h:3382:NC */ extern int XStoreBuffer (Display *, const char *, int, int);
/* /usr/X11R6/include/X11/Xlib.h:3388:NC */ extern int XStoreBytes (Display *, const char *, int);
/* /usr/X11R6/include/X11/Xlib.h:3394:NC */ extern int XStoreColor (Display *, Colormap, XColor *);
/* /usr/X11R6/include/X11/Xlib.h:3401:NC */ extern int XStoreColors (Display *, Colormap, XColor *, int);
/* /usr/X11R6/include/X11/Xlib.h:3407:NC */ extern int XStoreName (Display *, Window, const char *);
/* /usr/X11R6/include/X11/Xlib.h:3415:NC */ extern int XStoreNamedColor (Display *, Colormap, const char *, long unsigned int, int);
/* /usr/X11R6/include/X11/Xlib.h:3420:NC */ extern int XSync (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:3430:NC */ extern int XTextExtents (XFontStruct *, const char *, int, int *, int *, int *, XCharStruct *);
/* /usr/X11R6/include/X11/Xlib.h:3440:NC */ extern int XTextExtents16 (XFontStruct *, const XChar2b *, int, int *, int *, int *, XCharStruct *);
/* /usr/X11R6/include/X11/Xlib.h:3446:NC */ extern int XTextWidth (XFontStruct *, const char *, int);
/* /usr/X11R6/include/X11/Xlib.h:3452:NC */ extern int XTextWidth16 (XFontStruct *, const XChar2b *, int);
/* /usr/X11R6/include/X11/Xlib.h:3463:NC */ extern int XTranslateCoordinates (Display *, Window, Window, int, int, int *, int *, Window *);
/* /usr/X11R6/include/X11/Xlib.h:3468:NC */ extern int XUndefineCursor (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:3475:NC */ extern int XUngrabButton (Display *, unsigned int, unsigned int, Window);
/* /usr/X11R6/include/X11/Xlib.h:3482:NC */ extern int XUngrabKey (Display *, int, unsigned int, Window);
/* /usr/X11R6/include/X11/Xlib.h:3487:NC */ extern int XUngrabKeyboard (Display *, Time);
/* /usr/X11R6/include/X11/Xlib.h:3492:NC */ extern int XUngrabPointer (Display *, Time);
/* /usr/X11R6/include/X11/Xlib.h:3496:NC */ extern int XUngrabServer (Display *);
/* /usr/X11R6/include/X11/Xlib.h:3501:NC */ extern int XUninstallColormap (Display *, Colormap);
/* /usr/X11R6/include/X11/Xlib.h:3506:NC */ extern int XUnloadFont (Display *, Font);
/* /usr/X11R6/include/X11/Xlib.h:3511:NC */ extern int XUnmapSubwindows (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:3516:NC */ extern int XUnmapWindow (Display *, Window);
/* /usr/X11R6/include/X11/Xlib.h:3520:NC */ extern int XVendorRelease (Display *);
/* /usr/X11R6/include/X11/Xlib.h:3532:NC */ extern int XWarpPointer (Display *, Window, Window, int, int, unsigned int, unsigned int, int, int);
/* /usr/X11R6/include/X11/Xlib.h:3536:NC */ extern int XWidthMMOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:3540:NC */ extern int XWidthOfScreen (Screen *);
/* /usr/X11R6/include/X11/Xlib.h:3547:NC */ extern int XWindowEvent (Display *, Window, long int, XEvent *);
/* /usr/X11R6/include/X11/Xlib.h:3557:NC */ extern int XWriteBitmapFile (Display *, const char *, Pixmap, unsigned int, unsigned int, int, int);
/* /usr/X11R6/include/X11/Xlib.h:3559:NC */ extern int XSupportsLocale (void);
/* /usr/X11R6/include/X11/Xlib.h:3563:NC */ extern char *XSetLocaleModifiers (const char *);
/* /usr/X11R6/include/X11/Xlib.h:3570:NC */ extern XOM XOpenOM (Display *, struct _XrmHashBucketRec *, const char *, const char *);
/* /usr/X11R6/include/X11/Xlib.h:3574:NC */ extern int XCloseOM (XOM);
/* /usr/X11R6/include/X11/Xlib.h:3579:NC */ extern char *XSetOMValues (XOM, ...);
/* /usr/X11R6/include/X11/Xlib.h:3584:NC */ extern char *XGetOMValues (XOM, ...);
/* /usr/X11R6/include/X11/Xlib.h:3588:NC */ extern Display *XDisplayOfOM (XOM);
/* /usr/X11R6/include/X11/Xlib.h:3592:NC */ extern char *XLocaleOfOM (XOM);
/* /usr/X11R6/include/X11/Xlib.h:3597:NC */ extern XOC XCreateOC (XOM, ...);
/* /usr/X11R6/include/X11/Xlib.h:3601:NC */ extern void XDestroyOC (XOC);
/* /usr/X11R6/include/X11/Xlib.h:3605:NC */ extern XOM XOMOfOC (XOC);
/* /usr/X11R6/include/X11/Xlib.h:3610:NC */ extern char *XSetOCValues (XOC, ...);
/* /usr/X11R6/include/X11/Xlib.h:3615:NC */ extern char *XGetOCValues (XOC, ...);
/* /usr/X11R6/include/X11/Xlib.h:3623:NC */ extern XFontSet XCreateFontSet (Display *, const char *, char ***, int *, char **);
/* /usr/X11R6/include/X11/Xlib.h:3628:NC */ extern void XFreeFontSet (Display *, XFontSet);
/* /usr/X11R6/include/X11/Xlib.h:3634:NC */ extern int XFontsOfFontSet (XFontSet, XFontStruct ***, char ***);
/* /usr/X11R6/include/X11/Xlib.h:3638:NC */ extern char *XBaseFontNameListOfFontSet (XFontSet);
/* /usr/X11R6/include/X11/Xlib.h:3642:NC */ extern char *XLocaleOfFontSet (XFontSet);
/* /usr/X11R6/include/X11/Xlib.h:3646:NC */ extern int XContextDependentDrawing (XFontSet);
/* /usr/X11R6/include/X11/Xlib.h:3650:NC */ extern int XDirectionalDependentDrawing (XFontSet);
/* /usr/X11R6/include/X11/Xlib.h:3654:NC */ extern int XContextualDrawing (XFontSet);
/* /usr/X11R6/include/X11/Xlib.h:3658:NC */ extern XFontSetExtents *XExtentsOfFontSet (XFontSet);
/* /usr/X11R6/include/X11/Xlib.h:3664:NC */ extern int XmbTextEscapement (XFontSet, const char *, int);
/* /usr/X11R6/include/X11/Xlib.h:3670:NC */ extern int XwcTextEscapement (XFontSet, const wchar_t *, int);
/* /usr/X11R6/include/X11/Xlib.h:3676:NC */ extern int Xutf8TextEscapement (XFontSet, const char *, int);
/* /usr/X11R6/include/X11/Xlib.h:3684:NC */ extern int XmbTextExtents (XFontSet, const char *, int, XRectangle *, XRectangle *);
/* /usr/X11R6/include/X11/Xlib.h:3692:NC */ extern int XwcTextExtents (XFontSet, const wchar_t *, int, XRectangle *, XRectangle *);
/* /usr/X11R6/include/X11/Xlib.h:3700:NC */ extern int Xutf8TextExtents (XFontSet, const char *, int, XRectangle *, XRectangle *);
/* /usr/X11R6/include/X11/Xlib.h:3712:NC */ extern int XmbTextPerCharExtents (XFontSet, const char *, int, XRectangle *, XRectangle *, int, int *, XRectangle *, XRectangle *);
/* /usr/X11R6/include/X11/Xlib.h:3724:NC */ extern int XwcTextPerCharExtents (XFontSet, const wchar_t *, int, XRectangle *, XRectangle *, int, int *, XRectangle *, XRectangle *);
/* /usr/X11R6/include/X11/Xlib.h:3736:NC */ extern int Xutf8TextPerCharExtents (XFontSet, const char *, int, XRectangle *, XRectangle *, int, int *, XRectangle *, XRectangle *);
/* /usr/X11R6/include/X11/Xlib.h:3746:NC */ extern void XmbDrawText (Display *, Drawable, GC, int, int, XmbTextItem *, int);
/* /usr/X11R6/include/X11/Xlib.h:3756:NC */ extern void XwcDrawText (Display *, Drawable, GC, int, int, XwcTextItem *, int);
/* /usr/X11R6/include/X11/Xlib.h:3766:NC */ extern void Xutf8DrawText (Display *, Drawable, GC, int, int, XmbTextItem *, int);
/* /usr/X11R6/include/X11/Xlib.h:3777:NC */ extern void XmbDrawString (Display *, Drawable, XFontSet, GC, int, int, const char *, int);
/* /usr/X11R6/include/X11/Xlib.h:3788:NC */ extern void XwcDrawString (Display *, Drawable, XFontSet, GC, int, int, const wchar_t *, int);
/* /usr/X11R6/include/X11/Xlib.h:3799:NC */ extern void Xutf8DrawString (Display *, Drawable, XFontSet, GC, int, int, const char *, int);
/* /usr/X11R6/include/X11/Xlib.h:3810:NC */ extern void XmbDrawImageString (Display *, Drawable, XFontSet, GC, int, int, const char *, int);
/* /usr/X11R6/include/X11/Xlib.h:3821:NC */ extern void XwcDrawImageString (Display *, Drawable, XFontSet, GC, int, int, const wchar_t *, int);
/* /usr/X11R6/include/X11/Xlib.h:3832:NC */ extern void Xutf8DrawImageString (Display *, Drawable, XFontSet, GC, int, int, const char *, int);
/* /usr/X11R6/include/X11/Xlib.h:3839:NC */ extern XIM XOpenIM (Display *, struct _XrmHashBucketRec *, char *, char *);
/* /usr/X11R6/include/X11/Xlib.h:3843:NC */ extern int XCloseIM (XIM);
/* /usr/X11R6/include/X11/Xlib.h:3847:NC */ extern char *XGetIMValues (XIM, ...);
/* /usr/X11R6/include/X11/Xlib.h:3851:NC */ extern char *XSetIMValues (XIM, ...);
/* /usr/X11R6/include/X11/Xlib.h:3855:NC */ extern Display *XDisplayOfIM (XIM);
/* /usr/X11R6/include/X11/Xlib.h:3859:NC */ extern char *XLocaleOfIM (XIM);
/* /usr/X11R6/include/X11/Xlib.h:3863:NC */ extern XIC XCreateIC (XIM, ...);
/* /usr/X11R6/include/X11/Xlib.h:3867:NC */ extern void XDestroyIC (XIC);
/* /usr/X11R6/include/X11/Xlib.h:3871:NC */ extern void XSetICFocus (XIC);
/* /usr/X11R6/include/X11/Xlib.h:3875:NC */ extern void XUnsetICFocus (XIC);
/* /usr/X11R6/include/X11/Xlib.h:3879:NC */ extern wchar_t *XwcResetIC (XIC);
/* /usr/X11R6/include/X11/Xlib.h:3883:NC */ extern char *XmbResetIC (XIC);
/* /usr/X11R6/include/X11/Xlib.h:3887:NC */ extern char *Xutf8ResetIC (XIC);
/* /usr/X11R6/include/X11/Xlib.h:3891:NC */ extern char *XSetICValues (XIC, ...);
/* /usr/X11R6/include/X11/Xlib.h:3895:NC */ extern char *XGetICValues (XIC, ...);
/* /usr/X11R6/include/X11/Xlib.h:3899:NC */ extern XIM XIMOfIC (XIC);
/* /usr/X11R6/include/X11/Xlib.h:3904:NC */ extern int XFilterEvent (XEvent *, Window);
/* /usr/X11R6/include/X11/Xlib.h:3913:NC */ extern int XmbLookupString (XIC, XKeyPressedEvent *, char *, int, KeySym *, int *);
/* /usr/X11R6/include/X11/Xlib.h:3922:NC */ extern int XwcLookupString (XIC, XKeyPressedEvent *, wchar_t *, int, KeySym *, int *);
/* /usr/X11R6/include/X11/Xlib.h:3931:NC */ extern int Xutf8LookupString (XIC, XKeyPressedEvent *, char *, int, KeySym *, int *);
/* /usr/X11R6/include/X11/Xlib.h:3935:NC */ extern XVaNestedList XVaCreateNestedList (int, ...);
/* /usr/X11R6/include/X11/Xlib.h:3946:NC */ extern int XRegisterIMInstantiateCallback (Display *, struct _XrmHashBucketRec *, char *, char *, XIDProc, XPointer);
/* /usr/X11R6/include/X11/Xlib.h:3955:NC */ extern int XUnregisterIMInstantiateCallback (Display *, struct _XrmHashBucketRec *, char *, char *, XIDProc, XPointer);
/* /usr/X11R6/include/X11/Xlib.h:3970:NC */ extern int XInternalConnectionNumbers (Display *, int **, int *);
/* /usr/X11R6/include/X11/Xlib.h:3975:NC */ extern void XProcessInternalConnection (Display *, int);
/* /usr/X11R6/include/X11/Xlib.h:3981:NC */ extern int XAddConnectionWatch (Display *, XConnectionWatchProc, XPointer);
/* /usr/X11R6/include/X11/Xlib.h:3987:NC */ extern void XRemoveConnectionWatch (Display *, XConnectionWatchProc, XPointer);
/* /usr/X11R6/include/X11/Xlib.h:3994:NC */ extern void XSetAuthorization (char *, int, char *, int);
/* /usr/X11R6/include/X11/Xlib.h:4005:NC */ extern int _Xmbtowc (wchar_t *, char *, int);
/* /usr/X11R6/include/X11/Xlib.h:4010:NC */ extern int _Xwctomb (char *, wchar_t);
/* /usr/X11R6/include/X11/Xutil.h:361:NC */ extern XClassHint *XAllocClassHint (void);
/* /usr/X11R6/include/X11/Xutil.h:365:NC */ extern XIconSize *XAllocIconSize (void);
/* /usr/X11R6/include/X11/Xutil.h:369:NC */ extern XSizeHints *XAllocSizeHints (void);
/* /usr/X11R6/include/X11/Xutil.h:373:NC */ extern XStandardColormap *XAllocStandardColormap (void);
/* /usr/X11R6/include/X11/Xutil.h:377:NC */ extern XWMHints *XAllocWMHints (void);
/* /usr/X11R6/include/X11/Xutil.h:382:NC */ extern int XClipBox (Region, XRectangle *);
/* /usr/X11R6/include/X11/Xutil.h:386:NC */ extern Region XCreateRegion (void);
/* /usr/X11R6/include/X11/Xutil.h:388:NC */ extern const char *XDefaultString (void);
/* /usr/X11R6/include/X11/Xutil.h:394:NC */ extern int XDeleteContext (Display *, XID, XContext);
/* /usr/X11R6/include/X11/Xutil.h:398:NC */ extern int XDestroyRegion (Region);
/* /usr/X11R6/include/X11/Xutil.h:402:NC */ extern int XEmptyRegion (Region);
/* /usr/X11R6/include/X11/Xutil.h:407:NC */ extern int XEqualRegion (Region, Region);
/* /usr/X11R6/include/X11/Xutil.h:414:NC */ extern int XFindContext (Display *, XID, XContext, XPointer *);
/* /usr/X11R6/include/X11/Xutil.h:420:NC */ extern int XGetClassHint (Display *, Window, XClassHint *);
/* /usr/X11R6/include/X11/Xutil.h:427:NC */ extern int XGetIconSizes (Display *, Window, XIconSize **, int *);
/* /usr/X11R6/include/X11/Xutil.h:433:NC */ extern int XGetNormalHints (Display *, Window, XSizeHints *);
/* /usr/X11R6/include/X11/Xutil.h:441:NC */ extern int XGetRGBColormaps (Display *, Window, XStandardColormap **, int *, Atom);
/* /usr/X11R6/include/X11/Xutil.h:448:NC */ extern int XGetSizeHints (Display *, Window, XSizeHints *, Atom);
/* /usr/X11R6/include/X11/Xutil.h:455:NC */ extern int XGetStandardColormap (Display *, Window, XStandardColormap *, Atom);
/* /usr/X11R6/include/X11/Xutil.h:462:NC */ extern int XGetTextProperty (Display *, Window, XTextProperty *, Atom);
/* /usr/X11R6/include/X11/Xutil.h:469:NC */ extern XVisualInfo *XGetVisualInfo (Display *, long int, XVisualInfo *, int *);
/* /usr/X11R6/include/X11/Xutil.h:475:NC */ extern int XGetWMClientMachine (Display *, Window, XTextProperty *);
/* /usr/X11R6/include/X11/Xutil.h:480:NC */ extern XWMHints *XGetWMHints (Display *, Window);
/* /usr/X11R6/include/X11/Xutil.h:486:NC */ extern int XGetWMIconName (Display *, Window, XTextProperty *);
/* /usr/X11R6/include/X11/Xutil.h:492:NC */ extern int XGetWMName (Display *, Window, XTextProperty *);
/* /usr/X11R6/include/X11/Xutil.h:499:NC */ extern int XGetWMNormalHints (Display *, Window, XSizeHints *, long int *);
/* /usr/X11R6/include/X11/Xutil.h:507:NC */ extern int XGetWMSizeHints (Display *, Window, XSizeHints *, long int *, Atom);
/* /usr/X11R6/include/X11/Xutil.h:513:NC */ extern int XGetZoomHints (Display *, Window, XSizeHints *);
/* /usr/X11R6/include/X11/Xutil.h:519:NC */ extern int XIntersectRegion (Region, Region, Region);
/* /usr/X11R6/include/X11/Xutil.h:525:NC */ extern void XConvertCase (KeySym, KeySym *, KeySym *);
/* /usr/X11R6/include/X11/Xutil.h:533:NC */ extern int XLookupString (XKeyEvent *, char *, int, KeySym *, XComposeStatus *);
/* /usr/X11R6/include/X11/Xutil.h:541:NC */ extern int XMatchVisualInfo (Display *, int, int, int, XVisualInfo *);
/* /usr/X11R6/include/X11/Xutil.h:547:NC */ extern int XOffsetRegion (Region, int, int);
/* /usr/X11R6/include/X11/Xutil.h:553:NC */ extern int XPointInRegion (Region, int, int);
/* /usr/X11R6/include/X11/Xutil.h:559:NC */ extern Region XPolygonRegion (XPoint *, int, int);
/* /usr/X11R6/include/X11/Xutil.h:567:NC */ extern int XRectInRegion (Region, int, int, unsigned int, unsigned int);
/* /usr/X11R6/include/X11/Xutil.h:574:NC */ extern int XSaveContext (Display *, XID, XContext, const char *);
/* /usr/X11R6/include/X11/Xutil.h:580:NC */ extern int XSetClassHint (Display *, Window, XClassHint *);
/* /usr/X11R6/include/X11/Xutil.h:587:NC */ extern int XSetIconSizes (Display *, Window, XIconSize *, int);
/* /usr/X11R6/include/X11/Xutil.h:593:NC */ extern int XSetNormalHints (Display *, Window, XSizeHints *);
/* /usr/X11R6/include/X11/Xutil.h:601:NC */ extern void XSetRGBColormaps (Display *, Window, XStandardColormap *, int, Atom);
/* /usr/X11R6/include/X11/Xutil.h:608:NC */ extern int XSetSizeHints (Display *, Window, XSizeHints *, Atom);
/* /usr/X11R6/include/X11/Xutil.h:619:NC */ extern int XSetStandardProperties (Display *, Window, const char *, const char *, Pixmap, char **, int, XSizeHints *);
/* /usr/X11R6/include/X11/Xutil.h:626:NC */ extern void XSetTextProperty (Display *, Window, XTextProperty *, Atom);
/* /usr/X11R6/include/X11/Xutil.h:632:NC */ extern void XSetWMClientMachine (Display *, Window, XTextProperty *);
/* /usr/X11R6/include/X11/Xutil.h:638:NC */ extern int XSetWMHints (Display *, Window, XWMHints *);
/* /usr/X11R6/include/X11/Xutil.h:644:NC */ extern void XSetWMIconName (Display *, Window, XTextProperty *);
/* /usr/X11R6/include/X11/Xutil.h:650:NC */ extern void XSetWMName (Display *, Window, XTextProperty *);
/* /usr/X11R6/include/X11/Xutil.h:656:NC */ extern void XSetWMNormalHints (Display *, Window, XSizeHints *);
/* /usr/X11R6/include/X11/Xutil.h:668:NC */ extern void XSetWMProperties (Display *, Window, XTextProperty *, XTextProperty *, char **, int, XSizeHints *, XWMHints *, XClassHint *);
/* /usr/X11R6/include/X11/Xutil.h:680:NC */ extern void XmbSetWMProperties (Display *, Window, const char *, const char *, char **, int, XSizeHints *, XWMHints *, XClassHint *);
/* /usr/X11R6/include/X11/Xutil.h:692:NC */ extern void Xutf8SetWMProperties (Display *, Window, const char *, const char *, char **, int, XSizeHints *, XWMHints *, XClassHint *);
/* /usr/X11R6/include/X11/Xutil.h:699:NC */ extern void XSetWMSizeHints (Display *, Window, XSizeHints *, Atom);
/* /usr/X11R6/include/X11/Xutil.h:705:NC */ extern int XSetRegion (Display *, GC, Region);
/* /usr/X11R6/include/X11/Xutil.h:712:NC */ extern void XSetStandardColormap (Display *, Window, XStandardColormap *, Atom);
/* /usr/X11R6/include/X11/Xutil.h:718:NC */ extern int XSetZoomHints (Display *, Window, XSizeHints *);
/* /usr/X11R6/include/X11/Xutil.h:724:NC */ extern int XShrinkRegion (Region, int, int);
/* /usr/X11R6/include/X11/Xutil.h:730:NC */ extern int XStringListToTextProperty (char **, int, XTextProperty *);
/* /usr/X11R6/include/X11/Xutil.h:736:NC */ extern int XSubtractRegion (Region, Region, Region);
/* /usr/X11R6/include/X11/Xutil.h:744:NC */ extern int XmbTextListToTextProperty (Display *, char **, int, XICCEncodingStyle, XTextProperty *);
/* /usr/X11R6/include/X11/Xutil.h:752:NC */ extern int XwcTextListToTextProperty (Display *, wchar_t **, int, XICCEncodingStyle, XTextProperty *);
/* /usr/X11R6/include/X11/Xutil.h:760:NC */ extern int Xutf8TextListToTextProperty (Display *, char **, int, XICCEncodingStyle, XTextProperty *);
/* /usr/X11R6/include/X11/Xutil.h:764:NC */ extern void XwcFreeStringList (wchar_t **);
/* /usr/X11R6/include/X11/Xutil.h:770:NC */ extern int XTextPropertyToStringList (XTextProperty *, char ***, int *);
/* /usr/X11R6/include/X11/Xutil.h:777:NC */ extern int XmbTextPropertyToTextList (Display *, const XTextProperty *, char ***, int *);
/* /usr/X11R6/include/X11/Xutil.h:784:NC */ extern int XwcTextPropertyToTextList (Display *, const XTextProperty *, wchar_t ***, int *);
/* /usr/X11R6/include/X11/Xutil.h:791:NC */ extern int Xutf8TextPropertyToTextList (Display *, const XTextProperty *, char ***, int *);
/* /usr/X11R6/include/X11/Xutil.h:797:NC */ extern int XUnionRectWithRegion (XRectangle *, Region, Region);
/* /usr/X11R6/include/X11/Xutil.h:803:NC */ extern int XUnionRegion (Region, Region, Region);
/* /usr/X11R6/include/X11/Xutil.h:817:NC */ extern int XWMGeometry (Display *, int, const char *, const char *, unsigned int, XSizeHints *, int *, int *, int *, int *, int *);
/* /usr/X11R6/include/X11/Xutil.h:823:NC */ extern int XXorRegion (Region, Region, Region);
/* /usr/X11R6/include/X11/Xresource.h:78:NC */ extern char *Xpermalloc (unsigned int);
/* /usr/X11R6/include/X11/Xresource.h:95:NC */ extern XrmQuark XrmStringToQuark (const char *);
/* /usr/X11R6/include/X11/Xresource.h:99:NC */ extern XrmQuark XrmPermStringToQuark (const char *);
/* /usr/X11R6/include/X11/Xresource.h:104:NC */ extern XrmString XrmQuarkToString (XrmQuark);
/* /usr/X11R6/include/X11/Xresource.h:108:NC */ extern XrmQuark XrmUniqueQuark (void);
/* /usr/X11R6/include/X11/Xresource.h:124:NC */ extern void XrmStringToQuarkList (const char *, XrmQuarkList);
/* /usr/X11R6/include/X11/Xresource.h:130:NC */ extern void XrmStringToBindingQuarkList (const char *, XrmBindingList, XrmQuarkList);
/* /usr/X11R6/include/X11/Xresource.h:182:NC */ extern void XrmDestroyDatabase (XrmDatabase);
/* /usr/X11R6/include/X11/Xresource.h:190:NC */ extern void XrmQPutResource (XrmDatabase *, XrmBindingList, XrmQuarkList, XrmRepresentation, XrmValue *);
/* /usr/X11R6/include/X11/Xresource.h:197:NC */ extern void XrmPutResource (XrmDatabase *, const char *, const char *, XrmValue *);
/* /usr/X11R6/include/X11/Xresource.h:204:NC */ extern void XrmQPutStringResource (XrmDatabase *, XrmBindingList, XrmQuarkList, const char *);
/* /usr/X11R6/include/X11/Xresource.h:210:NC */ extern void XrmPutStringResource (XrmDatabase *, const char *, const char *);
/* /usr/X11R6/include/X11/Xresource.h:215:NC */ extern void XrmPutLineResource (XrmDatabase *, const char *);
/* /usr/X11R6/include/X11/Xresource.h:223:NC */ extern int XrmQGetResource (XrmDatabase, XrmNameList, XrmClassList, XrmRepresentation *, XrmValue *);
/* /usr/X11R6/include/X11/Xresource.h:231:NC */ extern int XrmGetResource (XrmDatabase, const char *, const char *, char **, XrmValue *);
/* /usr/X11R6/include/X11/Xresource.h:239:NC */ extern int XrmQGetSearchList (XrmDatabase, XrmNameList, XrmClassList, XrmHashTable *, int);
/* /usr/X11R6/include/X11/Xresource.h:247:NC */ extern int XrmQGetSearchResource (XrmHashTable *, XrmName, XrmClass, XrmRepresentation *, XrmValue *);
/* /usr/X11R6/include/X11/Xresource.h:260:NC */ extern void XrmSetDatabase (Display *, XrmDatabase);
/* /usr/X11R6/include/X11/Xresource.h:264:NC */ extern XrmDatabase XrmGetDatabase (Display *);
/* /usr/X11R6/include/X11/Xresource.h:270:NC */ extern XrmDatabase XrmGetFileDatabase (const char *);
/* /usr/X11R6/include/X11/Xresource.h:276:NC */ extern int XrmCombineFileDatabase (const char *, XrmDatabase *, int);
/* /usr/X11R6/include/X11/Xresource.h:280:NC */ extern XrmDatabase XrmGetStringDatabase (const char *);
/* /usr/X11R6/include/X11/Xresource.h:285:NC */ extern void XrmPutFileDatabase (XrmDatabase, const char *);
/* /usr/X11R6/include/X11/Xresource.h:290:NC */ extern void XrmMergeDatabases (XrmDatabase, XrmDatabase *);
/* /usr/X11R6/include/X11/Xresource.h:296:NC */ extern void XrmCombineDatabase (XrmDatabase, XrmDatabase *, int);
/* /usr/X11R6/include/X11/Xresource.h:315:NC */ extern int XrmEnumerateDatabase (XrmDatabase, XrmNameList, XrmClassList, int, int (*) (XrmDatabase *, XrmBindingList, XrmQuarkList, XrmRepresentation *, XrmValue *, XPointer), XPointer);
/* /usr/X11R6/include/X11/Xresource.h:319:NC */ extern const char *XrmLocaleOfDatabase (XrmDatabase);
/* /usr/X11R6/include/X11/Xresource.h:355:NC */ extern void XrmParseCommand (XrmDatabase *, XrmOptionDescList, int, const char *, int *, char **);
/* /usr/include/string.h:39:NC */ extern void *memcpy (void *, const void *, size_t);
/* /usr/include/string.h:43:NC */ extern void *memmove (void *, const void *, size_t);
/* /usr/include/string.h:52:NC */ extern void *memccpy (void *, const void *, int, size_t);
/* /usr/include/string.h:58:NC */ extern void *memset (void *, int, size_t);
/* /usr/include/string.h:62:NC */ extern int memcmp (const void *, const void *, size_t);
/* /usr/include/string.h:66:NC */ extern void *memchr (const void *, int, size_t);
/* /usr/include/string.h:83:NC */ extern char *strcpy (char *, const char *);
/* /usr/include/string.h:86:NC */ extern char *strncpy (char *, const char *, size_t);
/* /usr/include/string.h:90:NC */ extern char *strcat (char *, const char *);
/* /usr/include/string.h:93:NC */ extern char *strncat (char *, const char *, size_t);
/* /usr/include/string.h:97:NC */ extern int strcmp (const char *, const char *);
/* /usr/include/string.h:100:NC */ extern int strncmp (const char *, const char *, size_t);
/* /usr/include/string.h:104:NC */ extern int strcoll (const char *, const char *);
/* /usr/include/string.h:107:NC */ extern size_t strxfrm (char *, const char *, size_t);
/* /usr/include/string.h:126:NC */ extern char *strdup (const char *);
/* /usr/include/string.h:162:NC */ extern char *strchr (const char *, int);
/* /usr/include/string.h:164:NC */ extern char *strrchr (const char *, int);
/* /usr/include/string.h:177:NC */ extern size_t strcspn (const char *, const char *);
/* /usr/include/string.h:181:NC */ extern size_t strspn (const char *, const char *);
/* /usr/include/string.h:184:NC */ extern char *strpbrk (const char *, const char *);
/* /usr/include/string.h:187:NC */ extern char *strstr (const char *, const char *);
/* /usr/include/string.h:192:NC */ extern char *strtok (char *, const char *);
/* /usr/include/string.h:199:NC */ extern char *__strtok_r (char *, const char *, char **);
/* /usr/include/string.h:202:NC */ extern char *strtok_r (char *, const char *, char **);
/* /usr/include/string.h:230:NC */ extern size_t strlen (const char *);
/* /usr/include/string.h:243:NC */ extern char *strerror (int);
/* /usr/include/string.h:248:NC */ extern char *strerror_r (int, char *, size_t);
/* /usr/include/string.h:253:NC */ extern void __bzero (void *, size_t);
/* /usr/include/string.h:257:NC */ extern void bcopy (const void *, void *, size_t);
/* /usr/include/string.h:260:NC */ extern void bzero (void *, size_t);
/* /usr/include/string.h:264:NC */ extern int bcmp (const void *, const void *, size_t);
/* /usr/include/string.h:267:NC */ extern char *index (const char *, int);
/* /usr/include/string.h:270:NC */ extern char *rindex (const char *, int);
/* /usr/include/string.h:274:NC */ extern int ffs (int);
/* /usr/include/string.h:288:NC */ extern int strcasecmp (const char *, const char *);
/* /usr/include/string.h:292:NC */ extern int strncasecmp (const char *, const char *, size_t);
/* /usr/include/string.h:310:NC */ extern char *strsep (char **, const char *);
/* /usr/include/bits/string2.h:389:NC */ extern void *__rawmemchr (const void *, int);
/* /usr/include/bits/string2.h:919:NC */ extern size_t __strcspn_c1 (const char *, int);
/* /usr/include/bits/string2.h:922:NF */ extern size_t __strcspn_c1 (const char *__s, int __reject); /* (__s, __reject) const char *__s; int __reject; */
/* /usr/include/bits/string2.h:930:NC */ extern size_t __strcspn_c2 (const char *, int, int);
/* /usr/include/bits/string2.h:933:NF */ extern size_t __strcspn_c2 (const char *__s, int __reject1, int __reject2); /* (__s, __reject1, __reject2) const char *__s; int __reject1; int __reject2; */
/* /usr/include/bits/string2.h:942:NC */ extern size_t __strcspn_c3 (const char *, int, int, int);
/* /usr/include/bits/string2.h:946:NF */ extern size_t __strcspn_c3 (const char *__s, int __reject1, int __reject2, int __reject3); /* (__s, __reject1, __reject2, __reject3) const char *__s; int __reject1; int __reject2; int __reject3; */
/* /usr/include/bits/string2.h:976:NC */ extern size_t __strspn_c1 (const char *, int);
/* /usr/include/bits/string2.h:979:NF */ extern size_t __strspn_c1 (const char *__s, int __accept); /* (__s, __accept) const char *__s; int __accept; */
/* /usr/include/bits/string2.h:988:NC */ extern size_t __strspn_c2 (const char *, int, int);
/* /usr/include/bits/string2.h:991:NF */ extern size_t __strspn_c2 (const char *__s, int __accept1, int __accept2); /* (__s, __accept1, __accept2) const char *__s; int __accept1; int __accept2; */
/* /usr/include/bits/string2.h:1000:NC */ extern size_t __strspn_c3 (const char *, int, int, int);
/* /usr/include/bits/string2.h:1003:NF */ extern size_t __strspn_c3 (const char *__s, int __accept1, int __accept2, int __accept3); /* (__s, __accept1, __accept2, __accept3) const char *__s; int __accept1; int __accept2; int __accept3; */
/* /usr/include/bits/string2.h:1034:NC */ extern char *__strpbrk_c2 (const char *, int, int);
/* /usr/include/bits/string2.h:1037:NF */ extern char *__strpbrk_c2 (const char *__s, int __accept1, int __accept2); /* (__s, __accept1, __accept2) const char *__s; int __accept1; int __accept2; */
/* /usr/include/bits/string2.h:1045:NC */ extern char *__strpbrk_c3 (const char *, int, int, int);
/* /usr/include/bits/string2.h:1049:NF */ extern char *__strpbrk_c3 (const char *__s, int __accept1, int __accept2, int __accept3); /* (__s, __accept1, __accept2, __accept3) const char *__s; int __accept1; int __accept2; int __accept3; */
/* /usr/include/bits/string2.h:1085:NC */ extern char *__strtok_r_1c (char *, char, char **);
/* /usr/include/bits/string2.h:1088:NF */ extern char *__strtok_r_1c (char *__s, char __sep, char **__nextp); /* (__s, __sep, __nextp) char *__s; char __sep; char **__nextp; */
/* /usr/include/bits/string2.h:1117:NC */ extern char *__strsep_g (char **, const char *);
/* /usr/include/bits/string2.h:1135:NC */ extern char *__strsep_1c (char **, char);
/* /usr/include/bits/string2.h:1138:NF */ extern char *__strsep_1c (char **__s, char __reject); /* (__s, __reject) char **__s; char __reject; */
/* /usr/include/bits/string2.h:1145:NC */ extern char *__strsep_2c (char **, char, char);
/* /usr/include/bits/string2.h:1148:NF */ extern char *__strsep_2c (char **__s, char __reject1, char __reject2); /* (__s, __reject1, __reject2) char **__s; char __reject1; char __reject2; */
/* /usr/include/bits/string2.h:1173:NC */ extern char *__strsep_3c (char **, char, char, char);
/* /usr/include/bits/string2.h:1176:NF */ extern char *__strsep_3c (char **__s, char __reject1, char __reject2, char __reject3); /* (__s, __reject1, __reject2, __reject3) char **__s; char __reject1; char __reject2; char __reject3; */
/* /usr/include/stdlib.h:556:NC */ extern void *malloc (size_t);
/* /usr/include/stdlib.h:559:NC */ extern void *calloc (size_t, size_t);
/* /usr/include/bits/string2.h:1216:NC */ extern char *__strdup (const char *);
/* /usr/include/bits/string2.h:1236:NC */ extern char *__strndup (const char *, size_t);
/* /usr/X11R6/include/X11/Composite.h:65:NC */ extern void XtManageChildren (WidgetList, Cardinal);
/* /usr/X11R6/include/X11/Composite.h:69:NC */ extern void XtManageChild (Widget);
/* /usr/X11R6/include/X11/Composite.h:74:NC */ extern void XtUnmanageChildren (WidgetList, Cardinal);
/* /usr/X11R6/include/X11/Composite.h:78:NC */ extern void XtUnmanageChild (Widget);
/* /usr/X11R6/include/X11/Composite.h:96:NC */ extern void XtChangeManagedSet (WidgetList, Cardinal, XtDoChangeProc, XtPointer, WidgetList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:509:NC */ extern Boolean XtConvertAndStore (Widget, const char *, XrmValue *, const char *, XrmValue *);
/* /usr/X11R6/include/X11/Intrinsic.h:519:NC */ extern Boolean XtCallConverter (Display *, XtTypeConverter, XrmValuePtr, Cardinal, XrmValuePtr, XrmValue *, XtCacheRef *);
/* /usr/X11R6/include/X11/Intrinsic.h:523:NC */ extern Boolean XtDispatchEvent (XEvent *);
/* /usr/X11R6/include/X11/Intrinsic.h:528:NC */ extern Boolean XtCallAcceptFocus (Widget, Time *);
/* /usr/X11R6/include/X11/Intrinsic.h:532:NC */ extern Boolean XtPeekEvent (XEvent *);
/* /usr/X11R6/include/X11/Intrinsic.h:537:NC */ extern Boolean XtAppPeekEvent (XtAppContext, XEvent *);
/* /usr/X11R6/include/X11/Intrinsic.h:542:NC */ extern Boolean XtIsSubclass (Widget, WidgetClass);
/* /usr/X11R6/include/X11/Intrinsic.h:546:NC */ extern Boolean XtIsObject (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:551:NC */ extern Boolean _XtCheckSubclassFlag (Widget, XtEnum);
/* /usr/X11R6/include/X11/Intrinsic.h:558:NC */ extern Boolean _XtIsSubclassOf (Widget, WidgetClass, WidgetClass, XtEnum);
/* /usr/X11R6/include/X11/Intrinsic.h:562:NC */ extern Boolean XtIsManaged (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:566:NC */ extern Boolean XtIsRealized (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:570:NC */ extern Boolean XtIsSensitive (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:579:NC */ extern Boolean XtOwnSelection (Widget, Atom, Time, XtConvertSelectionProc, XtLoseSelectionProc, XtSelectionDoneProc);
/* /usr/X11R6/include/X11/Intrinsic.h:590:NC */ extern Boolean XtOwnSelectionIncremental (Widget, Atom, Time, XtConvertSelectionIncrProc, XtLoseSelectionIncrProc, XtSelectionDoneIncrProc, XtCancelConvertSelectionProc, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:598:NC */ extern XtGeometryResult XtMakeResizeRequest (Widget, Dimension, Dimension, Dimension *, Dimension *);
/* /usr/X11R6/include/X11/Intrinsic.h:606:NC */ extern void XtTranslateCoords (Widget, Position, Position, Position *, Position *);
/* /usr/X11R6/include/X11/Intrinsic.h:612:NC */ extern KeySym *XtGetKeysymTable (Display *, KeyCode *, int *);
/* /usr/X11R6/include/X11/Intrinsic.h:619:NC */ extern void XtKeysymToKeycodeList (Display *, KeySym, KeyCode **, Cardinal *);
/* /usr/X11R6/include/X11/Intrinsic.h:624:NC */ extern void XtStringConversionWarning (const char *, const char *);
/* /usr/X11R6/include/X11/Intrinsic.h:630:NC */ extern void XtDisplayStringConversionWarning (Display *, const char *, const char *);
/* /usr/X11R6/include/X11/Intrinsic.h:642:NC */ extern void XtAppAddConverter (XtAppContext, const char *, const char *, XtConverter, XtConvertArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:650:NC */ extern void XtAddConverter (const char *, const char *, XtConverter, XtConvertArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:660:NC */ extern void XtSetTypeConverter (const char *, const char *, XtTypeConverter, XtConvertArgList, Cardinal, XtCacheType, XtDestructor);
/* /usr/X11R6/include/X11/Intrinsic.h:671:NC */ extern void XtAppSetTypeConverter (XtAppContext, const char *, const char *, XtTypeConverter, XtConvertArgList, Cardinal, XtCacheType, XtDestructor);
/* /usr/X11R6/include/X11/Intrinsic.h:679:NC */ extern void XtConvert (Widget, const char *, XrmValue *, const char *, XrmValue *);
/* /usr/X11R6/include/X11/Intrinsic.h:687:NC */ extern void XtDirectConvert (XtConverter, XrmValuePtr, Cardinal, XrmValuePtr, XrmValue *);
/* /usr/X11R6/include/X11/Intrinsic.h:697:NC */ extern XtTranslations XtParseTranslationTable (const char *);
/* /usr/X11R6/include/X11/Intrinsic.h:701:NC */ extern XtAccelerators XtParseAcceleratorTable (const char *);
/* /usr/X11R6/include/X11/Intrinsic.h:706:NC */ extern void XtOverrideTranslations (Widget, XtTranslations);
/* /usr/X11R6/include/X11/Intrinsic.h:711:NC */ extern void XtAugmentTranslations (Widget, XtTranslations);
/* /usr/X11R6/include/X11/Intrinsic.h:716:NC */ extern void XtInstallAccelerators (Widget, Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:721:NC */ extern void XtInstallAllAccelerators (Widget, Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:725:NC */ extern void XtUninstallTranslations (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:731:NC */ extern void XtAppAddActions (XtAppContext, XtActionList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:736:NC */ extern void XtAddActions (XtActionList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:742:NC */ extern XtActionHookId XtAppAddActionHook (XtAppContext, XtActionHookProc, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:746:NC */ extern void XtRemoveActionHook (XtActionHookId);
/* /usr/X11R6/include/X11/Intrinsic.h:752:NC */ extern void XtGetActionList (WidgetClass, XtActionList *, Cardinal *);
/* /usr/X11R6/include/X11/Intrinsic.h:760:NC */ extern void XtCallActionProc (Widget, const char *, XEvent *, String *, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:768:NC */ extern void XtRegisterGrabAction (XtActionProc, Boolean, unsigned int, int, int);
/* /usr/X11R6/include/X11/Intrinsic.h:773:NC */ extern void XtSetMultiClickTime (Display *, int);
/* /usr/X11R6/include/X11/Intrinsic.h:777:NC */ extern int XtGetMultiClickTime (Display *);
/* /usr/X11R6/include/X11/Intrinsic.h:782:NC */ extern KeySym XtGetActionKeysym (XEvent *, Modifiers *);
/* /usr/X11R6/include/X11/Intrinsic.h:796:NC */ extern void XtTranslateKeycode (Display *, KeyCode, Modifiers, Modifiers *, KeySym *);
/* /usr/X11R6/include/X11/Intrinsic.h:804:NC */ extern void XtTranslateKey (Display *, KeyCode, Modifiers, Modifiers *, KeySym *);
/* /usr/X11R6/include/X11/Intrinsic.h:809:NC */ extern void XtSetKeyTranslator (Display *, XtKeyProc);
/* /usr/X11R6/include/X11/Intrinsic.h:816:NC */ extern void XtRegisterCaseConverter (Display *, XtCaseProc, KeySym, KeySym);
/* /usr/X11R6/include/X11/Intrinsic.h:823:NC */ extern void XtConvertCase (Display *, KeySym, KeySym *, KeySym *);
/* /usr/X11R6/include/X11/Intrinsic.h:842:NC */ extern void XtAddEventHandler (Widget, EventMask, Boolean, XtEventHandler, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:850:NC */ extern void XtRemoveEventHandler (Widget, EventMask, Boolean, XtEventHandler, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:858:NC */ extern void XtAddRawEventHandler (Widget, EventMask, Boolean, XtEventHandler, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:866:NC */ extern void XtRemoveRawEventHandler (Widget, EventMask, Boolean, XtEventHandler, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:875:NC */ extern void XtInsertEventHandler (Widget, EventMask, Boolean, XtEventHandler, XtPointer, XtListPosition);
/* /usr/X11R6/include/X11/Intrinsic.h:884:NC */ extern void XtInsertRawEventHandler (Widget, EventMask, Boolean, XtEventHandler, XtPointer, XtListPosition);
/* /usr/X11R6/include/X11/Intrinsic.h:890:NC */ extern XtEventDispatchProc XtSetEventDispatcher (Display *, int, XtEventDispatchProc);
/* /usr/X11R6/include/X11/Intrinsic.h:895:NC */ extern Boolean XtDispatchEventToWidget (Widget, XEvent *);
/* /usr/X11R6/include/X11/Intrinsic.h:904:NC */ extern void XtInsertEventTypeHandler (Widget, int, XtPointer, XtEventHandler, XtPointer, XtListPosition);
/* /usr/X11R6/include/X11/Intrinsic.h:912:NC */ extern void XtRemoveEventTypeHandler (Widget, int, XtPointer, XtEventHandler, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:916:NC */ extern EventMask XtBuildEventMask (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:924:NC */ extern void XtRegisterExtensionSelector (Display *, int, int, XtExtensionSelectProc, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:930:NC */ extern void XtAddGrab (Widget, Boolean, Boolean);
/* /usr/X11R6/include/X11/Intrinsic.h:934:NC */ extern void XtRemoveGrab (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:938:NC */ extern void XtProcessEvent (XtInputMask);
/* /usr/X11R6/include/X11/Intrinsic.h:943:NC */ extern void XtAppProcessEvent (XtAppContext, XtInputMask);
/* /usr/X11R6/include/X11/Intrinsic.h:947:NC */ extern void XtMainLoop (void);
/* /usr/X11R6/include/X11/Intrinsic.h:951:NC */ extern void XtAppMainLoop (XtAppContext);
/* /usr/X11R6/include/X11/Intrinsic.h:956:NC */ extern void XtAddExposureToRegion (XEvent *, Region);
/* /usr/X11R6/include/X11/Intrinsic.h:961:NC */ extern void XtSetKeyboardFocus (Widget, Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:965:NC */ extern Widget XtGetKeyboardFocusWidget (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:969:NC */ extern XEvent *XtLastEventProcessed (Display *);
/* /usr/X11R6/include/X11/Intrinsic.h:973:NC */ extern Time XtLastTimestampProcessed (Display *);
/* /usr/X11R6/include/X11/Intrinsic.h:985:NC */ extern XtIntervalId XtAddTimeOut (long unsigned int, XtTimerCallbackProc, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:992:NC */ extern XtIntervalId XtAppAddTimeOut (XtAppContext, long unsigned int, XtTimerCallbackProc, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:996:NC */ extern void XtRemoveTimeOut (XtIntervalId);
/* /usr/X11R6/include/X11/Intrinsic.h:1003:NC */ extern XtInputId XtAddInput (int, XtPointer, XtInputCallbackProc, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1011:NC */ extern XtInputId XtAppAddInput (XtAppContext, int, XtPointer, XtInputCallbackProc, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1015:NC */ extern void XtRemoveInput (XtInputId);
/* /usr/X11R6/include/X11/Intrinsic.h:1021:NC */ extern XtSignalId XtAppAddSignal (XtAppContext, XtSignalCallbackProc, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1025:NC */ extern void XtRemoveSignal (XtSignalId);
/* /usr/X11R6/include/X11/Intrinsic.h:1029:NC */ extern void XtNoticeSignal (XtSignalId);
/* /usr/X11R6/include/X11/Intrinsic.h:1033:NC */ extern void XtNextEvent (XEvent *);
/* /usr/X11R6/include/X11/Intrinsic.h:1038:NC */ extern void XtAppNextEvent (XtAppContext, XEvent *);
/* /usr/X11R6/include/X11/Intrinsic.h:1048:NC */ extern Boolean XtPending (void);
/* /usr/X11R6/include/X11/Intrinsic.h:1052:NC */ extern XtInputMask XtAppPending (XtAppContext);
/* /usr/X11R6/include/X11/Intrinsic.h:1058:NC */ extern XtBlockHookId XtAppAddBlockHook (XtAppContext, XtBlockHookProc, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1062:NC */ extern void XtRemoveBlockHook (XtBlockHookId);
/* /usr/X11R6/include/X11/Intrinsic.h:1095:NC */ extern void XtRealizeWidget (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1099:NC */ extern void XtUnrealizeWidget (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1103:NC */ extern void XtDestroyWidget (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1108:NC */ extern void XtSetSensitive (Widget, Boolean);
/* /usr/X11R6/include/X11/Intrinsic.h:1113:NC */ extern void XtSetMappedWhenManaged (Widget, Boolean);
/* /usr/X11R6/include/X11/Intrinsic.h:1118:NC */ extern Widget XtNameToWidget (Widget, const char *);
/* /usr/X11R6/include/X11/Intrinsic.h:1123:NC */ extern Widget XtWindowToWidget (Display *, Window);
/* /usr/X11R6/include/X11/Intrinsic.h:1131:NC */ extern XtPointer XtGetClassExtension (WidgetClass, Cardinal, XrmQuark, long int, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1148:NC */ extern ArgList XtMergeArgLists (ArgList, Cardinal, ArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1161:NC */ extern XtVarArgsList XtVaCreateArgsList (XtPointer, ...);
/* /usr/X11R6/include/X11/Intrinsic.h:1175:NC */ extern Display *XtDisplay (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1179:NC */ extern Display *XtDisplayOfObject (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1183:NC */ extern Screen *XtScreen (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1187:NC */ extern Screen *XtScreenOfObject (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1191:NC */ extern Window XtWindow (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1195:NC */ extern Window XtWindowOfObject (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1199:NC */ extern String XtName (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1203:NC */ extern WidgetClass XtSuperclass (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1207:NC */ extern WidgetClass XtClass (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1211:NC */ extern Widget XtParent (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1224:NC */ extern void XtAddCallback (Widget, const char *, XtCallbackProc, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1231:NC */ extern void XtRemoveCallback (Widget, const char *, XtCallbackProc, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1237:NC */ extern void XtAddCallbacks (Widget, const char *, XtCallbackList);
/* /usr/X11R6/include/X11/Intrinsic.h:1243:NC */ extern void XtRemoveCallbacks (Widget, const char *, XtCallbackList);
/* /usr/X11R6/include/X11/Intrinsic.h:1248:NC */ extern void XtRemoveAllCallbacks (Widget, const char *);
/* /usr/X11R6/include/X11/Intrinsic.h:1255:NC */ extern void XtCallCallbacks (Widget, const char *, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1261:NC */ extern void XtCallCallbackList (Widget, XtCallbackList, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1266:NC */ extern XtCallbackStatus XtHasCallbacks (Widget, const char *);
/* /usr/X11R6/include/X11/Intrinsic.h:1279:NC */ extern XtGeometryResult XtMakeGeometryRequest (Widget, XtWidgetGeometry *, XtWidgetGeometry *);
/* /usr/X11R6/include/X11/Intrinsic.h:1285:NC */ extern XtGeometryResult XtQueryGeometry (Widget, XtWidgetGeometry *, XtWidgetGeometry *);
/* /usr/X11R6/include/X11/Intrinsic.h:1293:NC */ extern Widget XtCreatePopupShell (const char *, WidgetClass, Widget, ArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1300:NC */ extern Widget XtVaCreatePopupShell (const char *, WidgetClass, Widget, ...);
/* /usr/X11R6/include/X11/Intrinsic.h:1305:NC */ extern void XtPopup (Widget, XtGrabKind);
/* /usr/X11R6/include/X11/Intrinsic.h:1309:NC */ extern void XtPopupSpringLoaded (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1315:NC */ extern void XtCallbackNone (Widget, XtPointer, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1321:NC */ extern void XtCallbackNonexclusive (Widget, XtPointer, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1327:NC */ extern void XtCallbackExclusive (Widget, XtPointer, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1331:NC */ extern void XtPopdown (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1337:NC */ extern void XtCallbackPopdown (Widget, XtPointer, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1344:NC */ extern void XtMenuPopupAction (Widget, XEvent *, String *, Cardinal *);
/* /usr/X11R6/include/X11/Intrinsic.h:1352:NC */ extern Widget XtCreateWidget (const char *, WidgetClass, Widget, ArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1360:NC */ extern Widget XtCreateManagedWidget (const char *, WidgetClass, Widget, ArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1367:NC */ extern Widget XtVaCreateWidget (const char *, WidgetClass, Widget, ...);
/* /usr/X11R6/include/X11/Intrinsic.h:1374:NC */ extern Widget XtVaCreateManagedWidget (const char *, WidgetClass, Widget, ...);
/* /usr/X11R6/include/X11/Intrinsic.h:1381:NC */ extern Widget XtCreateApplicationShell (const char *, WidgetClass, ArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1390:NC */ extern Widget XtAppCreateShell (const char *, const char *, WidgetClass, Display *, ArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1398:NC */ extern Widget XtVaAppCreateShell (const char *, const char *, WidgetClass, Display *, ...);
/* /usr/X11R6/include/X11/Intrinsic.h:1408:NC */ extern void XtToolkitInitialize (void);
/* /usr/X11R6/include/X11/Intrinsic.h:1414:NC */ extern XtLanguageProc XtSetLanguageProc (XtAppContext, XtLanguageProc, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1425:NC */ extern void XtDisplayInitialize (XtAppContext, Display *, const char *, const char *, XrmOptionDescRec *, Cardinal, int *, char **);
/* /usr/X11R6/include/X11/Intrinsic.h:1438:NC */ extern Widget XtOpenApplication (XtAppContext *, const char *, XrmOptionDescList, Cardinal, int *, String *, String *, WidgetClass, ArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1450:NC */ extern Widget XtVaOpenApplication (XtAppContext *, const char *, XrmOptionDescList, Cardinal, int *, String *, String *, WidgetClass, ...);
/* /usr/X11R6/include/X11/Intrinsic.h:1462:NC */ extern Widget XtAppInitialize (XtAppContext *, const char *, XrmOptionDescList, Cardinal, int *, String *, String *, ArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1473:NC */ extern Widget XtVaAppInitialize (XtAppContext *, const char *, XrmOptionDescList, Cardinal, int *, String *, String *, ...);
/* /usr/X11R6/include/X11/Intrinsic.h:1482:NC */ extern Widget XtInitialize (const char *, const char *, XrmOptionDescRec *, Cardinal, int *, char **);
/* /usr/X11R6/include/X11/Intrinsic.h:1493:NC */ extern Display *XtOpenDisplay (XtAppContext, const char *, const char *, const char *, XrmOptionDescRec *, Cardinal, int *, char **);
/* /usr/X11R6/include/X11/Intrinsic.h:1497:NC */ extern XtAppContext XtCreateApplicationContext (void);
/* /usr/X11R6/include/X11/Intrinsic.h:1502:NC */ extern void XtAppSetFallbackResources (XtAppContext, String *);
/* /usr/X11R6/include/X11/Intrinsic.h:1506:NC */ extern void XtDestroyApplicationContext (XtAppContext);
/* /usr/X11R6/include/X11/Intrinsic.h:1510:NC */ extern void XtInitializeWidgetClass (WidgetClass);
/* /usr/X11R6/include/X11/Intrinsic.h:1514:NC */ extern XtAppContext XtWidgetToApplicationContext (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1518:NC */ extern XtAppContext XtDisplayToApplicationContext (Display *);
/* /usr/X11R6/include/X11/Intrinsic.h:1522:NC */ extern XrmDatabase XtDatabase (Display *);
/* /usr/X11R6/include/X11/Intrinsic.h:1526:NC */ extern XrmDatabase XtScreenDatabase (Screen *);
/* /usr/X11R6/include/X11/Intrinsic.h:1530:NC */ extern void XtCloseDisplay (Display *);
/* /usr/X11R6/include/X11/Intrinsic.h:1539:NC */ extern void XtGetApplicationResources (Widget, XtPointer, XtResourceList, Cardinal, ArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1547:NC */ extern void XtVaGetApplicationResources (Widget, XtPointer, XtResourceList, Cardinal, ...);
/* /usr/X11R6/include/X11/Intrinsic.h:1558:NC */ extern void XtGetSubresources (Widget, XtPointer, const char *, const char *, XtResourceList, Cardinal, ArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1568:NC */ extern void XtVaGetSubresources (Widget, XtPointer, const char *, const char *, XtResourceList, Cardinal, ...);
/* /usr/X11R6/include/X11/Intrinsic.h:1574:NC */ extern void XtSetValues (Widget, ArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1579:NC */ extern void XtVaSetValues (Widget, ...);
/* /usr/X11R6/include/X11/Intrinsic.h:1585:NC */ extern void XtGetValues (Widget, ArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1590:NC */ extern void XtVaGetValues (Widget, ...);
/* /usr/X11R6/include/X11/Intrinsic.h:1598:NC */ extern void XtSetSubvalues (XtPointer, XtResourceList, Cardinal, ArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1605:NC */ extern void XtVaSetSubvalues (XtPointer, XtResourceList, Cardinal, ...);
/* /usr/X11R6/include/X11/Intrinsic.h:1613:NC */ extern void XtGetSubvalues (XtPointer, XtResourceList, Cardinal, ArgList, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1620:NC */ extern void XtVaGetSubvalues (XtPointer, XtResourceList, Cardinal, ...);
/* /usr/X11R6/include/X11/Intrinsic.h:1626:NC */ extern void XtGetResourceList (WidgetClass, XtResourceList *, Cardinal *);
/* /usr/X11R6/include/X11/Intrinsic.h:1632:NC */ extern void XtGetConstraintResourceList (WidgetClass, XtResourceList *, Cardinal *);
/* /usr/X11R6/include/X11/Intrinsic.h:1680:NC */ extern XtCheckpointToken XtSessionGetToken (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:1684:NC */ extern void XtSessionReturnToken (XtCheckpointToken);
/* /usr/X11R6/include/X11/Intrinsic.h:1695:NC */ extern XtErrorMsgHandler XtAppSetErrorMsgHandler (XtAppContext, XtErrorMsgHandler);
/* /usr/X11R6/include/X11/Intrinsic.h:1699:NC */ extern void XtSetErrorMsgHandler (XtErrorMsgHandler);
/* /usr/X11R6/include/X11/Intrinsic.h:1704:NC */ extern XtErrorMsgHandler XtAppSetWarningMsgHandler (XtAppContext, XtErrorMsgHandler);
/* /usr/X11R6/include/X11/Intrinsic.h:1708:NC */ extern void XtSetWarningMsgHandler (XtErrorMsgHandler);
/* /usr/X11R6/include/X11/Intrinsic.h:1718:NC */ extern void XtAppErrorMsg (XtAppContext, const char *, const char *, const char *, const char *, String *, Cardinal *);
/* /usr/X11R6/include/X11/Intrinsic.h:1727:NC */ extern void XtErrorMsg (const char *, const char *, const char *, const char *, String *, Cardinal *);
/* /usr/X11R6/include/X11/Intrinsic.h:1737:NC */ extern void XtAppWarningMsg (XtAppContext, const char *, const char *, const char *, const char *, String *, Cardinal *);
/* /usr/X11R6/include/X11/Intrinsic.h:1746:NC */ extern void XtWarningMsg (const char *, const char *, const char *, const char *, String *, Cardinal *);
/* /usr/X11R6/include/X11/Intrinsic.h:1751:NC */ extern XtErrorHandler XtAppSetErrorHandler (XtAppContext, XtErrorHandler);
/* /usr/X11R6/include/X11/Intrinsic.h:1755:NC */ extern void XtSetErrorHandler (XtErrorHandler);
/* /usr/X11R6/include/X11/Intrinsic.h:1760:NC */ extern XtErrorHandler XtAppSetWarningHandler (XtAppContext, XtErrorHandler);
/* /usr/X11R6/include/X11/Intrinsic.h:1764:NC */ extern void XtSetWarningHandler (XtErrorHandler);
/* /usr/X11R6/include/X11/Intrinsic.h:1769:NC */ extern void XtAppError (XtAppContext, const char *);
/* /usr/X11R6/include/X11/Intrinsic.h:1773:NC */ extern void XtError (const char *);
/* /usr/X11R6/include/X11/Intrinsic.h:1778:NC */ extern void XtAppWarning (XtAppContext, const char *);
/* /usr/X11R6/include/X11/Intrinsic.h:1782:NC */ extern void XtWarning (const char *);
/* /usr/X11R6/include/X11/Intrinsic.h:1786:NC */ extern XrmDatabase *XtAppGetErrorDatabase (XtAppContext);
/* /usr/X11R6/include/X11/Intrinsic.h:1790:NC */ extern XrmDatabase *XtGetErrorDatabase (void);
/* /usr/X11R6/include/X11/Intrinsic.h:1801:NC */ extern void XtAppGetErrorDatabaseText (XtAppContext, const char *, const char *, const char *, const char *, String, int, XrmDatabase);
/* /usr/X11R6/include/X11/Intrinsic.h:1810:NC */ extern void XtGetErrorDatabaseText (const char *, const char *, const char *, const char *, String, int);
/* /usr/X11R6/include/X11/Intrinsic.h:1820:NC */ extern char *XtMalloc (Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1825:NC */ extern char *XtCalloc (Cardinal, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1830:NC */ extern char *XtRealloc (char *, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1834:NC */ extern void XtFree (char *);
/* /usr/X11R6/include/X11/Intrinsic.h:1882:NC */ extern XtWorkProcId XtAddWorkProc (XtWorkProc, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1888:NC */ extern XtWorkProcId XtAppAddWorkProc (XtAppContext, XtWorkProc, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1892:NC */ extern void XtRemoveWorkProc (XtWorkProcId);
/* /usr/X11R6/include/X11/Intrinsic.h:1904:NC */ extern GC XtGetGC (Widget, XtGCMask, XGCValues *);
/* /usr/X11R6/include/X11/Intrinsic.h:1913:NC */ extern GC XtAllocateGC (Widget, Cardinal, XtGCMask, XGCValues *, XtGCMask, XtGCMask);
/* /usr/X11R6/include/X11/Intrinsic.h:1921:NC */ extern void XtDestroyGC (GC);
/* /usr/X11R6/include/X11/Intrinsic.h:1926:NC */ extern void XtReleaseGC (Widget, GC);
/* /usr/X11R6/include/X11/Intrinsic.h:1933:NC */ extern void XtAppReleaseCacheRefs (XtAppContext, XtCacheRef *);
/* /usr/X11R6/include/X11/Intrinsic.h:1939:NC */ extern void XtCallbackReleaseCacheRef (Widget, XtPointer, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1945:NC */ extern void XtCallbackReleaseCacheRefList (Widget, XtPointer, XtPointer);
/* /usr/X11R6/include/X11/Intrinsic.h:1951:NC */ extern void XtSetWMColormapWindows (Widget, Widget *, Cardinal);
/* /usr/X11R6/include/X11/Intrinsic.h:1958:NC */ extern String XtFindFile (const char *, Substitution, Cardinal, XtFilePredicate);
/* /usr/X11R6/include/X11/Intrinsic.h:1969:NC */ extern String XtResolvePathname (Display *, const char *, const char *, const char *, const char *, Substitution, Cardinal, XtFilePredicate);
/* /usr/X11R6/include/X11/Intrinsic.h:1983:NC */ extern void XtDisownSelection (Widget, Atom, Time);
/* /usr/X11R6/include/X11/Intrinsic.h:1992:NC */ extern void XtGetSelectionValue (Widget, Atom, Atom, XtSelectionCallbackProc, XtPointer, Time);
/* /usr/X11R6/include/X11/Intrinsic.h:2002:NC */ extern void XtGetSelectionValues (Widget, Atom, Atom *, int, XtSelectionCallbackProc, XtPointer *, Time);
/* /usr/X11R6/include/X11/Intrinsic.h:2007:NC */ extern void XtAppSetSelectionTimeout (XtAppContext, long unsigned int);
/* /usr/X11R6/include/X11/Intrinsic.h:2011:NC */ extern void XtSetSelectionTimeout (long unsigned int);
/* /usr/X11R6/include/X11/Intrinsic.h:2015:NC */ extern long unsigned int XtAppGetSelectionTimeout (XtAppContext);
/* /usr/X11R6/include/X11/Intrinsic.h:2019:NC */ extern long unsigned int XtGetSelectionTimeout (void);
/* /usr/X11R6/include/X11/Intrinsic.h:2025:NC */ extern XSelectionRequestEvent *XtGetSelectionRequest (Widget, Atom, XtRequestId);
/* /usr/X11R6/include/X11/Intrinsic.h:2034:NC */ extern void XtGetSelectionValueIncremental (Widget, Atom, Atom, XtSelectionCallbackProc, XtPointer, Time);
/* /usr/X11R6/include/X11/Intrinsic.h:2044:NC */ extern void XtGetSelectionValuesIncremental (Widget, Atom, Atom *, int, XtSelectionCallbackProc, XtPointer *, Time);
/* /usr/X11R6/include/X11/Intrinsic.h:2053:NC */ extern void XtSetSelectionParameters (Widget, Atom, Atom, XtPointer, long unsigned int, int);
/* /usr/X11R6/include/X11/Intrinsic.h:2063:NC */ extern void XtGetSelectionParameters (Widget, Atom, XtRequestId, Atom *, XtPointer *, long unsigned int *, int *);
/* /usr/X11R6/include/X11/Intrinsic.h:2068:NC */ extern void XtCreateSelectionRequest (Widget, Atom);
/* /usr/X11R6/include/X11/Intrinsic.h:2074:NC */ extern void XtSendSelectionRequest (Widget, Atom, Time);
/* /usr/X11R6/include/X11/Intrinsic.h:2079:NC */ extern void XtCancelSelectionRequest (Widget, Atom);
/* /usr/X11R6/include/X11/Intrinsic.h:2083:NC */ extern Atom XtReservePropertyAtom (Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:2088:NC */ extern void XtReleasePropertyAtom (Widget, Atom);
/* /usr/X11R6/include/X11/Intrinsic.h:2097:NC */ extern void XtGrabKey (Widget, KeyCode, Modifiers, Boolean, int, int);
/* /usr/X11R6/include/X11/Intrinsic.h:2103:NC */ extern void XtUngrabKey (Widget, KeyCode, Modifiers);
/* /usr/X11R6/include/X11/Intrinsic.h:2111:NC */ extern int XtGrabKeyboard (Widget, Boolean, int, int, Time);
/* /usr/X11R6/include/X11/Intrinsic.h:2116:NC */ extern void XtUngrabKeyboard (Widget, Time);
/* /usr/X11R6/include/X11/Intrinsic.h:2128:NC */ extern void XtGrabButton (Widget, int, Modifiers, Boolean, unsigned int, int, int, Window, Cursor);
/* /usr/X11R6/include/X11/Intrinsic.h:2134:NC */ extern void XtUngrabButton (Widget, unsigned int, Modifiers);
/* /usr/X11R6/include/X11/Intrinsic.h:2145:NC */ extern int XtGrabPointer (Widget, Boolean, unsigned int, int, int, Window, Cursor, Time);
/* /usr/X11R6/include/X11/Intrinsic.h:2150:NC */ extern void XtUngrabPointer (Widget, Time);
/* /usr/X11R6/include/X11/Intrinsic.h:2156:NC */ extern void XtGetApplicationNameAndClass (Display *, String *, String *);
/* /usr/X11R6/include/X11/Intrinsic.h:2162:NC */ extern void XtRegisterDrawable (Display *, Drawable, Widget);
/* /usr/X11R6/include/X11/Intrinsic.h:2167:NC */ extern void XtUnregisterDrawable (Display *, Drawable);
/* /usr/X11R6/include/X11/Intrinsic.h:2171:NC */ extern Widget XtHooksOfDisplay (Display *);
/* /usr/X11R6/include/X11/Intrinsic.h:2217:NC */ extern void XtGetDisplays (XtAppContext, Display ***, Cardinal *);
/* /usr/X11R6/include/X11/Intrinsic.h:2221:NC */ extern Boolean XtToolkitThreadInitialize (void);
/* /usr/X11R6/include/X11/Intrinsic.h:2225:NC */ extern void XtAppSetExitFlag (XtAppContext);
/* /usr/X11R6/include/X11/Intrinsic.h:2229:NC */ extern Boolean XtAppGetExitFlag (XtAppContext);
/* /usr/X11R6/include/X11/Intrinsic.h:2233:NC */ extern void XtAppLock (XtAppContext);
/* /usr/X11R6/include/X11/Intrinsic.h:2237:NC */ extern void XtAppUnlock (XtAppContext);
/* /usr/X11R6/include/X11/Intrinsic.h:2253:NC */ extern Boolean XtCvtStringToAcceleratorTable (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2262:NC */ extern Boolean XtCvtStringToAtom (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2271:NC */ extern Boolean XtCvtStringToBool (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2280:NC */ extern Boolean XtCvtStringToBoolean (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2289:NC */ extern Boolean XtCvtStringToCommandArgArray (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2298:NC */ extern Boolean XtCvtStringToCursor (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2307:NC */ extern Boolean XtCvtStringToDimension (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2316:NC */ extern Boolean XtCvtStringToDirectoryString (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2325:NC */ extern Boolean XtCvtStringToDisplay (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2334:NC */ extern Boolean XtCvtStringToFile (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2343:NC */ extern Boolean XtCvtStringToFloat (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2352:NC */ extern Boolean XtCvtStringToFont (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2361:NC */ extern Boolean XtCvtStringToFontSet (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2370:NC */ extern Boolean XtCvtStringToFontStruct (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2379:NC */ extern Boolean XtCvtStringToGravity (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2388:NC */ extern Boolean XtCvtStringToInitialState (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2397:NC */ extern Boolean XtCvtStringToInt (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2406:NC */ extern Boolean XtCvtStringToPixel (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2417:NC */ extern Boolean XtCvtStringToRestartStyle (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2426:NC */ extern Boolean XtCvtStringToShort (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2435:NC */ extern Boolean XtCvtStringToTranslationTable (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2444:NC */ extern Boolean XtCvtStringToUnsignedChar (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2453:NC */ extern Boolean XtCvtStringToVisual (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2464:NC */ extern Boolean XtCvtIntToBool (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2473:NC */ extern Boolean XtCvtIntToBoolean (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2482:NC */ extern Boolean XtCvtIntToColor (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2493:NC */ extern Boolean XtCvtIntToFloat (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2502:NC */ extern Boolean XtCvtIntToFont (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2511:NC */ extern Boolean XtCvtIntToPixel (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2520:NC */ extern Boolean XtCvtIntToPixmap (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2531:NC */ extern Boolean XtCvtIntToShort (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2540:NC */ extern Boolean XtCvtIntToUnsignedChar (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/Intrinsic.h:2551:NC */ extern Boolean XtCvtColorToPixel (Display *, XrmValuePtr, Cardinal *, XrmValuePtr, XrmValuePtr, XtPointer *);
/* /usr/X11R6/include/X11/extensions/shape.h:82:NC */ extern int XShapeQueryExtension (Display *, int *, int *);
/* /usr/X11R6/include/X11/extensions/shape.h:88:NC */ extern int XShapeQueryVersion (Display *, int *, int *);
/* /usr/X11R6/include/X11/extensions/shape.h:98:NC */ extern void XShapeCombineRegion (Display *, Window, int, int, int, Region, int);
/* /usr/X11R6/include/X11/extensions/shape.h:110:NC */ extern void XShapeCombineRectangles (Display *, Window, int, int, int, XRectangle *, int, int, int);
/* /usr/X11R6/include/X11/extensions/shape.h:120:NC */ extern void XShapeCombineMask (Display *, Window, int, int, int, Pixmap, int);
/* /usr/X11R6/include/X11/extensions/shape.h:131:NC */ extern void XShapeCombineShape (Display *, Window, int, int, int, Window, int, int);
/* /usr/X11R6/include/X11/extensions/shape.h:139:NC */ extern void XShapeOffsetShape (Display *, Window, int, int, int);
/* /usr/X11R6/include/X11/extensions/shape.h:154:NC */ extern int XShapeQueryExtents (Display *, Window, int *, int *, int *, unsigned int *, unsigned int *, int *, int *, int *, unsigned int *, unsigned int *);
/* /usr/X11R6/include/X11/extensions/shape.h:160:NC */ extern void XShapeSelectInput (Display *, Window, long unsigned int);
/* /usr/X11R6/include/X11/extensions/shape.h:165:NC */ extern long unsigned int XShapeInputSelected (Display *, Window);
/* /usr/X11R6/include/X11/extensions/shape.h:173:NC */ extern XRectangle *XShapeGetRectangles (Display *, Window, int, int *, int *);
/* list.h:74:NC */ extern void AddToList (name_list **, char *, char *);
/* list.h:76:NC */ extern char *LookInList (name_list *, char *, XClassHint *);
/* list.h:77:NC */ extern char *LookInNameList (name_list *, char *);
/* list.h:79:NC */ extern char *LookPatternInList (name_list *, char *, XClassHint *);
/* list.h:80:NC */ extern char *LookPatternInNameList (name_list *, char *);
/* list.h:82:NC */ extern int GetColorFromList (name_list *, char *, XClassHint *, Pixel *);
/* list.h:83:NC */ extern void FreeList (name_list **);
/* list.h:85:NC */ extern int match (char *, char *);
/* /usr/include/stdlib.h:137:NC */ extern size_t __ctype_get_mb_cur_max (void);
/* /usr/include/stdlib.h:142:NC */ extern double atof (const char *);
/* /usr/include/stdlib.h:144:NC */ extern int atoi (const char *);
/* /usr/include/stdlib.h:146:NC */ extern long int atol (const char *);
/* /usr/include/stdlib.h:153:NC */ extern long long int atoll (const char *);
/* /usr/include/stdlib.h:160:NC */ extern double strtod (const char *, char **);
/* /usr/include/stdlib.h:177:NC */ extern long int strtol (const char *, char **, int);
/* /usr/include/stdlib.h:181:NC */ extern long unsigned int strtoul (const char *, char **, int);
/* /usr/include/stdlib.h:188:NC */ extern long long int strtoq (const char *, char **, int);
/* /usr/include/stdlib.h:193:NC */ extern long long unsigned int strtouq (const char *, char **, int);
/* /usr/include/stdlib.h:201:NC */ extern long long int strtoll (const char *, char **, int);
/* /usr/include/stdlib.h:206:NC */ extern long long unsigned int strtoull (const char *, char **, int);
/* /usr/include/stdlib.h:266:NC */ extern double __strtod_internal (const char *, char **, int);
/* /usr/include/stdlib.h:269:NC */ extern float __strtof_internal (const char *, char **, int);
/* /usr/include/stdlib.h:272:NC */ extern long double __strtold_internal (const char *, char **, int);
/* /usr/include/stdlib.h:276:NC */ extern long int __strtol_internal (const char *, char **, int, int);
/* /usr/include/stdlib.h:282:NC */ extern long unsigned int __strtoul_internal (const char *, char **, int, int);
/* /usr/include/stdlib.h:290:NC */ extern long long int __strtoll_internal (const char *, char **, int, int);
/* /usr/include/stdlib.h:299:NC */ extern long long unsigned int __strtoull_internal (const char *, char **, int, int);
/* /usr/include/stdlib.h:310:NF */ extern double strtod (const char *__nptr, char **__endptr); /* (__nptr, __endptr) const char *__nptr; char **__endptr; */
/* /usr/include/stdlib.h:316:NF */ extern long int strtol (const char *__nptr, char **__endptr, int __base); /* (__nptr, __endptr, __base) const char *__nptr; char **__endptr; int __base; */
/* /usr/include/stdlib.h:322:NF */ extern long unsigned int strtoul (const char *__nptr, char **__endptr, int __base); /* (__nptr, __endptr, __base) const char *__nptr; char **__endptr; int __base; */
/* /usr/include/stdlib.h:346:NF */ extern long long int strtoq (const char *__nptr, char **__endptr, int __base); /* (__nptr, __endptr, __base) const char *__nptr; char **__endptr; int __base; */
/* /usr/include/stdlib.h:352:NF */ extern long long unsigned int strtouq (const char *__nptr, char **__endptr, int __base); /* (__nptr, __endptr, __base) const char *__nptr; char **__endptr; int __base; */
/* /usr/include/stdlib.h:362:NF */ extern long long int strtoll (const char *__nptr, char **__endptr, int __base); /* (__nptr, __endptr, __base) const char *__nptr; char **__endptr; int __base; */
/* /usr/include/stdlib.h:368:NF */ extern long long unsigned int strtoull (const char *__nptr, char **__endptr, int __base); /* (__nptr, __endptr, __base) const char *__nptr; char **__endptr; int __base; */
/* /usr/include/stdlib.h:377:NF */ extern double atof (const char *__nptr); /* (__nptr) const char *__nptr; */
/* /usr/include/stdlib.h:382:NF */ extern int atoi (const char *__nptr); /* (__nptr) const char *__nptr; */
/* /usr/include/stdlib.h:387:NF */ extern long int atol (const char *__nptr); /* (__nptr) const char *__nptr; */
/* /usr/include/stdlib.h:396:NF */ extern long long int atoll (const char *__nptr); /* (__nptr) const char *__nptr; */
/* /usr/include/stdlib.h:408:NC */ extern char *l64a (long int);
/* /usr/include/stdlib.h:411:NC */ extern long int a64l (const char *);
/* /usr/include/stdlib.h:423:NC */ extern long int random (void);
/* /usr/include/stdlib.h:426:NC */ extern void srandom (unsigned int);
/* /usr/include/stdlib.h:433:NC */ extern char *initstate (unsigned int, char *, size_t);
/* /usr/include/stdlib.h:437:NC */ extern char *setstate (char *);
/* /usr/include/stdlib.h:457:NC */ extern int random_r (struct random_data *, int32_t *);
/* /usr/include/stdlib.h:459:NC */ extern int srandom_r (unsigned int, struct random_data *);
/* /usr/include/stdlib.h:463:NC */ extern int initstate_r (unsigned int, char *, size_t, struct random_data *);
/* /usr/include/stdlib.h:466:NC */ extern int setstate_r (char *, struct random_data *);
/* /usr/include/stdlib.h:473:NC */ extern int rand (void);
/* /usr/include/stdlib.h:475:NC */ extern void srand (unsigned int);
/* /usr/include/stdlib.h:480:NC */ extern int rand_r (unsigned int *);
/* /usr/include/stdlib.h:488:NC */ extern double drand48 (void);
/* /usr/include/stdlib.h:489:NC */ extern double erand48 (short unsigned int *);
/* /usr/include/stdlib.h:492:NC */ extern long int lrand48 (void);
/* /usr/include/stdlib.h:493:NC */ extern long int nrand48 (short unsigned int *);
/* /usr/include/stdlib.h:496:NC */ extern long int mrand48 (void);
/* /usr/include/stdlib.h:497:NC */ extern long int jrand48 (short unsigned int *);
/* /usr/include/stdlib.h:500:NC */ extern void srand48 (long int);
/* /usr/include/stdlib.h:501:NC */ extern short unsigned int *seed48 (short unsigned int *);
/* /usr/include/stdlib.h:502:NC */ extern void lcong48 (short unsigned int *);
/* /usr/include/stdlib.h:519:NC */ extern int drand48_r (struct drand48_data *, double *);
/* /usr/include/stdlib.h:522:NC */ extern int erand48_r (short unsigned int *, struct drand48_data *, double *);
/* /usr/include/stdlib.h:526:NC */ extern int lrand48_r (struct drand48_data *, long int *);
/* /usr/include/stdlib.h:529:NC */ extern int nrand48_r (short unsigned int *, struct drand48_data *, long int *);
/* /usr/include/stdlib.h:533:NC */ extern int mrand48_r (struct drand48_data *, long int *);
/* /usr/include/stdlib.h:536:NC */ extern int jrand48_r (short unsigned int *, struct drand48_data *, long int *);
/* /usr/include/stdlib.h:540:NC */ extern int srand48_r (long int, struct drand48_data *);
/* /usr/include/stdlib.h:543:NC */ extern int seed48_r (short unsigned int *, struct drand48_data *);
/* /usr/include/stdlib.h:546:NC */ extern int lcong48_r (short unsigned int *, struct drand48_data *);
/* /usr/include/stdlib.h:567:NC */ extern void *realloc (void *, size_t);
/* /usr/include/stdlib.h:569:NC */ extern void free (void *);
/* /usr/include/stdlib.h:574:NC */ extern void cfree (void *);
/* /usr/include/alloca.h:33:NC */ extern void *alloca (size_t);
/* /usr/include/stdlib.h:583:NC */ extern void *valloc (size_t);
/* /usr/include/stdlib.h:594:NC */ extern void abort (void);
/* /usr/include/stdlib.h:598:NC */ extern int atexit (void (*) (void));
/* /usr/include/stdlib.h:605:NC */ extern int on_exit (void (*) (int, void *), void *);
/* /usr/include/stdlib.h:612:NC */ extern void exit (int);
/* /usr/include/stdlib.h:626:NC */ extern char *getenv (const char *);
/* /usr/include/stdlib.h:631:NC */ extern char *__secure_getenv (const char *);
/* /usr/include/stdlib.h:637:NC */ extern int putenv (char *);
/* /usr/include/stdlib.h:644:NC */ extern int setenv (const char *, const char *, int);
/* /usr/include/stdlib.h:647:NC */ extern int unsetenv (const char *);
/* /usr/include/stdlib.h:654:NC */ extern int clearenv (void);
/* /usr/include/stdlib.h:663:NC */ extern char *mktemp (char *);
/* /usr/include/stdlib.h:674:NC */ extern int mkstemp (char *);
/* /usr/include/stdlib.h:693:NC */ extern char *mkdtemp (char *);
/* /usr/include/stdlib.h:702:NC */ extern int system (const char *);
/* /usr/include/stdlib.h:721:NC */ extern char *realpath (const char *, char *);
/* /usr/include/stdlib.h:739:NC */ extern void *bsearch (const void *, const void *, size_t, size_t, __compar_fn_t);
/* /usr/include/stdlib.h:744:NC */ extern void qsort (void *, size_t, size_t, __compar_fn_t);
/* /usr/include/stdlib.h:748:NC */ extern int abs (int);
/* /usr/include/stdlib.h:749:NC */ extern long int labs (long int);
/* /usr/include/stdlib.h:763:NC */ extern div_t div (int, int);
/* /usr/include/stdlib.h:765:NC */ extern ldiv_t ldiv (long int, long int);
/* /usr/include/stdlib.h:785:NC */ extern char *ecvt (double, int, int *, int *);
/* /usr/include/stdlib.h:791:NC */ extern char *fcvt (double, int, int *, int *);
/* /usr/include/stdlib.h:796:NC */ extern char *gcvt (double, int, char *);
/* /usr/include/stdlib.h:802:NC */ extern char *qecvt (long double, int, int *, int *);
/* /usr/include/stdlib.h:804:NC */ extern char *qfcvt (long double, int, int *, int *);
/* /usr/include/stdlib.h:805:NC */ extern char *qgcvt (long double, int, char *);
/* /usr/include/stdlib.h:812:NC */ extern int ecvt_r (double, int, int *, int *, char *, size_t);
/* /usr/include/stdlib.h:815:NC */ extern int fcvt_r (double, int, int *, int *, char *, size_t);
/* /usr/include/stdlib.h:819:NC */ extern int qecvt_r (long double, int, int *, int *, char *, size_t);
/* /usr/include/stdlib.h:822:NC */ extern int qfcvt_r (long double, int, int *, int *, char *, size_t);
/* /usr/include/stdlib.h:830:NC */ extern int mblen (const char *, size_t);
/* /usr/include/stdlib.h:834:NC */ extern int mbtowc (wchar_t *, const char *, size_t);
/* /usr/include/stdlib.h:837:NC */ extern int wctomb (char *, wchar_t);
/* /usr/include/stdlib.h:842:NC */ extern size_t mbstowcs (wchar_t *, const char *, size_t);
/* /usr/include/stdlib.h:846:NC */ extern size_t wcstombs (char *, const wchar_t *, size_t);
/* /usr/include/stdlib.h:855:NC */ extern int rpmatch (const char *);
/* /usr/include/stdlib.h:874:NC */ extern void setkey (const char *);
/* /usr/include/stdlib.h:890:NC */ extern int grantpt (int);
/* /usr/include/stdlib.h:894:NC */ extern int unlockpt (int);
/* /usr/include/stdlib.h:899:NC */ extern char *ptsname (int);
/* /usr/include/stdlib.h:916:NC */ extern int getloadavg (double *, int);
/* twm.h:498:NC */ extern void Reborder (Time);
/* twm.h:499:NC */ extern void Done (int);
/* twm.h:500:NC */ extern void ComputeCommonTitleOffsets (void);
/* twm.h:502:NC */ extern void ComputeWindowTitleOffsets (TwmWindow *, unsigned int, int);
/* twm.h:503:NC */ extern void ComputeTitleLocation (TwmWindow *);
/* twm.h:504:NC */ extern void CreateFonts (void);
/* twm.h:505:NC */ extern void RestoreWithdrawnLocation (TwmWindow *);
/* twm.h:557:NC */ extern int GetWMState (Window, int *, Window *);
/* twm.h:560:NC */ extern void DoRestart (Time);
/* util.h:75:NC */ extern void Zoom (Window, Window);
/* util.h:78:NC */ extern void MoveOutline (Window, int, int, int, int, int, int);
/* util.h:79:NC */ extern Pixmap GetBitmap (char *);
/* util.h:81:NC */ extern Pixmap FindBitmap (char *, unsigned int *, unsigned int *);
/* util.h:82:NC */ extern void GetUnknownIcon (char *);
/* util.h:83:NC */ extern char *ExpandFilename (char *);
/* util.h:84:NC */ extern char *ExpandFilePath (char *);
/* util.h:85:NC */ extern char *ExpandPixmapPath (char *);
/* util.h:87:NC */ extern void MaskScreen (char *);
/* util.h:88:NC */ extern void UnmaskScreen (void);
/* util.h:89:NC */ extern void StartAnimation (void);
/* util.h:90:NC */ extern void StopAnimation (void);
/* util.h:91:NC */ extern void SetAnimationSpeed (int);
/* util.h:92:NC */ extern void ModifyAnimationSpeed (int);
/* util.h:93:NC */ extern void Animate (void);
/* util.h:94:NC */ extern void TryToAnimate (void);
/* util.h:96:NC */ extern void InsertRGBColormap (Atom, XStandardColormap *, int, int);
/* util.h:97:NC */ extern void RemoveRGBColormap (Atom);
/* util.h:98:NC */ extern void LocateStandardColormaps (void);
/* util.h:99:NC */ extern void GetColor (int, Pixel *, char *);
/* util.h:100:NC */ extern void GetShadeColors (ColorPair *);
/* util.h:101:NC */ extern void GetFont (MyFont *);
/* util.h:102:NC */ extern void SetFocusVisualAttributes (TwmWindow *, int);
/* util.h:103:NC */ extern void SetFocus (TwmWindow *, Time);
/* util.h:104:NC */ extern Pixmap CreateMenuIcon (int, unsigned int *, unsigned int *);
/* util.h:107:NC */ extern Pixmap Create3DMenuIcon (unsigned int, unsigned int *, unsigned int *, ColorPair);
/* util.h:108:NC */ extern Pixmap Create3DIconManagerIcon (ColorPair);
/* util.h:112:NC */ extern void Draw3DBorder (Window, int, int, int, int, int, ColorPair, int, int, int);
/* util.h:116:NC */ extern void Draw3DCorner (Window, int, int, int, int, int, int, ColorPair, int);
/* util.h:117:NC */ extern void PaintBorders (TwmWindow *, int);
/* util.h:118:NC */ extern void PaintAllDecoration (void);
/* util.h:119:NC */ extern void PaintTitle (TwmWindow *);
/* util.h:120:NC */ extern void PaintIcon (TwmWindow *);
/* util.h:121:NC */ extern void PaintTitleButton (TwmWindow *, TBWindow *);
/* util.h:122:NC */ extern void PaintTitleButtons (TwmWindow *);
/* util.h:123:NC */ extern void adoptWindow (void);
/* util.h:124:NC */ extern void DebugTrace (char *);
/* util.h:125:NC */ extern void SetBorderCursor (TwmWindow *, int, int);
/* util.h:141:NC */ extern Image *GetImage (char *, ColorPair);
/* util.h:144:NC */ extern unsigned char *GetWMPropertyString (Window, Atom);
/* util.h:146:NC */ extern void ConstrainByBorders1 (int *, int, int *, int);
/* util.h:149:NC */ extern void ConstrainByBorders (TwmWindow *, int *, int, int *, int);
/* parse.h:69:NC */ extern int ParseTwmrc (char *);
/* parse.h:70:NC */ extern int ParseStringList (char **);
/* parse.h:72:NC */ extern void twmUnput (int);
/* parse.h:73:NC */ extern void TwmOutput (int);
/* parse.h:202:NC */ extern int ParseJustification (char *);
/* parse.h:203:NC */ extern int ParseAlignement (char *);
/* parse.h:205:NC */ extern int parse_keyword (char *, int *);
/* parse.h:207:NC */ extern int do_single_keyword (int);
/* parse.h:208:NC */ extern int do_string_keyword (int, char *);
/* parse.h:209:NC */ extern int do_number_keyword (int, int);
/* parse.h:210:NC */ extern name_list **do_colorlist_keyword (int, int, char *);
/* parse.h:211:NC */ extern int do_color_keyword (int, int, char *);
/* parse.h:212:NC */ extern int do_string_savecolor (int, char *);
/* parse.h:213:NC */ extern int do_var_savecolor (int);
/* parse.h:214:NC */ extern void assign_var_savecolor (void);
/* parse.h:220:NC */ extern int do_squeeze_entry (name_list **, char *, int, int, int);
/* gnome.h:12:NC */ extern void InitGnome (void);
/* gnome.h:13:NC */ extern void GnomeAddClientWindow (TwmWindow *);
/* gnome.h:14:NC */ extern void GnomeDeleteClientWindow (TwmWindow *);
/* menus.h:193:NC */ extern void InitTitlebarButtons (void);
/* menus.h:194:NC */ extern void InitMenus (void);
/* menus.h:195:NC */ extern MenuRoot *NewMenuRoot (char *);
/* menus.h:197:NC */ extern MenuItem *AddToMenu (MenuRoot *, char *, char *, MenuRoot *, int, char *, char *);
/* menus.h:198:NC */ extern int PopUpMenu (MenuRoot *, int, int, int);
/* menus.h:199:NC */ extern void MakeWorkspacesMenu (void);
/* menus.h:200:NC */ extern MenuRoot *FindMenuRoot (char *);
/* menus.h:202:NC */ extern int AddFuncKey (char *, int, int, int, MenuRoot *, char *, char *);
/* menus.h:204:NC */ extern int AddFuncButton (int, int, int, int, MenuRoot *, MenuItem *);
/* menus.h:205:NC */ extern void DestroyMenu (MenuRoot *);
/* menus.h:206:NC */ extern int PopDownMenu (void);
/* menus.h:207:NC */ extern int HideMenu (MenuRoot *);
/* menus.h:211:NC */ extern int ExecuteFunction (int, char *, Window, TwmWindow *, XEvent *, int, int);
/* menus.h:212:NC */ extern int DeferExecution (int, int, Cursor);
/* menus.h:213:NC */ extern int NeedToDefer (MenuRoot *);
/* menus.h:214:NC */ extern void ReGrab (void);
/* menus.h:217:NC */ extern int CreateTitleButton (char *, int, char *, MenuRoot *, int, int);
/* menus.h:218:NC */ extern void PaintEntry (MenuRoot *, MenuItem *, int);
/* menus.h:219:NC */ extern void Paint3DEntry (MenuRoot *, MenuItem *, int);
/* menus.h:220:NC */ extern void PaintNormalEntry (MenuRoot *, MenuItem *, int);
/* menus.h:221:NC */ extern void PaintMenu (MenuRoot *, XEvent *);
/* menus.h:222:NC */ extern int UpdateMenu (void);
/* menus.h:223:NC */ extern void MakeMenus (void);
/* menus.h:224:NC */ extern int MakeMenu (MenuRoot *);
/* menus.h:225:NC */ extern int MoveMenu (XEvent *);
/* menus.h:226:NC */ extern void DeIconify (TwmWindow *);
/* menus.h:227:NC */ extern void Iconify (TwmWindow *, int, int);
/* menus.h:228:NC */ extern int WarpToScreen (int, int);
/* menus.h:229:NC */ extern int BumpWindowColormap (TwmWindow *, int);
/* menus.h:230:NC */ extern void SetMapStateProp (TwmWindow *, int);
/* menus.h:231:NC */ extern void SendDeleteWindowMessage (TwmWindow *, Time);
/* menus.h:232:NC */ extern void SendSaveYourselfMessage (TwmWindow *, Time);
/* menus.h:233:NC */ extern void SendTakeFocusMessage (TwmWindow *, Time);
/* menus.h:234:NC */ extern int FindConstraint (TwmWindow *, int);
/* menus.h:235:NC */ extern void MosaicFade (TwmWindow *, Window);
/* menus.h:236:NC */ extern void ZoomInWindow (TwmWindow *, Window);
/* menus.h:237:NC */ extern void ZoomOutWindow (TwmWindow *, Window);
/* menus.h:238:NC */ extern void FadeWindow (TwmWindow *, Window);
/* menus.h:239:NC */ extern void SweepWindow (TwmWindow *, Window);
/* menus.h:240:NC */ extern int WarpCursorToDefaultEntry (MenuRoot *);
/* menus.h:241:NC */ extern void PlaceTransients (TwmWindow *, int);
/* menus.h:242:NC */ extern void PlaceOntop (int, int);
/* menus.h:244:NC */ extern void ModifyCurrentTB (int, int, char *, MenuRoot *);
/* menus.h:245:NC */ extern void Execute (char *);
/* menus.h:246:NC */ extern void ShowIconManager (void);
/* menus.h:247:NC */ extern void HideIconManager (void);
/* menus.h:248:NC */ extern void RaiseWindow (TwmWindow *);
/* menus.h:249:NC */ extern void LowerWindow (TwmWindow *);
/* menus.h:250:NC */ extern void RaiseLower (TwmWindow *);
/* menus.h:251:NC */ extern void RaiseLowerFrame (Window, int);
/* menus.h:252:NC */ extern void MapRaised (TwmWindow *);
/* menus.h:253:NC */ extern void RaiseFrame (Window);
/* menus.h:254:NC */ extern void FocusOnRoot (void);
/* menus.h:255:NC */ extern void TryToPack (TwmWindow *, int *, int *);
/* menus.h:256:NC */ extern void TryToPush (TwmWindow *, int, int, int);
/* menus.h:257:NC */ extern void TryToGrid (TwmWindow *, int *, int *);
/* menus.h:258:NC */ extern void resizeFromCenter (Window, TwmWindow *);
/* menus.h:259:NC */ extern void WarpAlongRing (XButtonEvent *, int);
/* menus.h:260:NC */ extern void WarpToWindow (TwmWindow *);
/* menus.h:261:NC */ extern void DisplayPosition (TwmWindow *, int, int);
/* menus.h:262:NC */ extern void packwindow (TwmWindow *, char *);
/* menus.h:263:NC */ extern void fillwindow (TwmWindow *, char *);
/* menus.h:267:NC */ extern void AutoSqueeze (TwmWindow *);
/* menus.h:268:NC */ extern void Squeeze (TwmWindow *);
/* iconmgr.h:104:NC */ extern void CreateIconManagers (void);
/* iconmgr.h:106:NC */ extern IconMgr *AllocateIconManager (char *, char *, char *, int);
/* iconmgr.h:107:NC */ extern void MoveIconManager (int);
/* iconmgr.h:108:NC */ extern void MoveMappedIconManager (int);
/* iconmgr.h:109:NC */ extern void JumpIconManager (int);
/* iconmgr.h:110:NC */ extern WList *AddIconManager (TwmWindow *);
/* iconmgr.h:111:NC */ extern void InsertInIconManager (IconMgr *, WList *, TwmWindow *);
/* iconmgr.h:112:NC */ extern void RemoveFromIconManager (IconMgr *, WList *);
/* iconmgr.h:113:NC */ extern void RemoveIconManager (TwmWindow *);
/* iconmgr.h:114:NC */ extern void CurrentIconManagerEntry (WList *);
/* iconmgr.h:115:NC */ extern void ActiveIconManager (WList *);
/* iconmgr.h:116:NC */ extern void NotActiveIconManager (WList *);
/* iconmgr.h:117:NC */ extern void DrawIconManagerBorder (WList *, int);
/* iconmgr.h:118:NC */ extern void SortIconManager (IconMgr *);
/* iconmgr.h:119:NC */ extern void PackIconManager (IconMgr *);
/* vscreen.h:39:NC */ extern void InitVirtualScreens (ScreenInfo *);
/* vscreen.h:40:NC */ extern virtualScreen *getVScreenOf (int, int);
/* workmgr.h:152:NC */ extern void InitWorkSpaceManager (void);
/* workmgr.h:153:NC */ extern void ConfigureWorkSpaceManager (void);
/* workmgr.h:154:NC */ extern void CreateWorkSpaceManager (void);
/* workmgr.h:155:NC */ extern void GotoWorkSpaceByName (virtualScreen *, char *);
/* workmgr.h:156:NC */ extern void GotoWorkSpaceByNumber (virtualScreen *, int);
/* workmgr.h:157:NC */ extern void GotoPrevWorkSpace (virtualScreen *);
/* workmgr.h:158:NC */ extern void GotoNextWorkSpace (virtualScreen *);
/* workmgr.h:159:NC */ extern void GotoRightWorkSpace (virtualScreen *);
/* workmgr.h:160:NC */ extern void GotoLeftWorkSpace (virtualScreen *);
/* workmgr.h:161:NC */ extern void GotoUpWorkSpace (virtualScreen *);
/* workmgr.h:162:NC */ extern void GotoDownWorkSpace (virtualScreen *);
/* workmgr.h:163:NC */ extern void GotoWorkSpace (virtualScreen *, WorkSpace *);
/* workmgr.h:166:NC */ extern void AddWorkSpace (char *, char *, char *, char *, char *, char *);
/* workmgr.h:167:NC */ extern void SetupOccupation (TwmWindow *, int);
/* workmgr.h:168:NC */ extern void Occupy (TwmWindow *);
/* workmgr.h:169:NC */ extern void OccupyHandleButtonEvent (XEvent *);
/* workmgr.h:170:NC */ extern void OccupyAll (TwmWindow *);
/* workmgr.h:171:NC */ extern void AddToWorkSpace (char *, TwmWindow *);
/* workmgr.h:172:NC */ extern void RemoveFromWorkSpace (char *, TwmWindow *);
/* workmgr.h:173:NC */ extern void ToggleOccupation (char *, TwmWindow *);
/* workmgr.h:174:NC */ extern void AllocateOthersIconManagers (void);
/* workmgr.h:175:NC */ extern void ChangeOccupation (TwmWindow *, int);
/* workmgr.h:176:NC */ extern void WmgrRedoOccupation (TwmWindow *);
/* workmgr.h:177:NC */ extern void WMgrRemoveFromCurrentWorkSpace (virtualScreen *, TwmWindow *);
/* workmgr.h:181:NC */ extern void WMgrAddToCurrentWorkSpaceAndWarp (virtualScreen *, char *);
/* workmgr.h:182:NC */ extern void WMgrHandleExposeEvent (virtualScreen *, XEvent *);
/* workmgr.h:183:NC */ extern void PaintWorkSpaceManager (virtualScreen *);
/* workmgr.h:184:NC */ extern void PaintOccupyWindow (void);
/* workmgr.h:185:NC */ extern unsigned int GetMaskFromProperty (unsigned char *, long unsigned int);
/* workmgr.h:186:NC */ extern void AddToClientsList (char *, char *);
/* workmgr.h:187:NC */ extern void WMapToggleState (virtualScreen *);
/* workmgr.h:188:NC */ extern void WMapSetMapState (virtualScreen *);
/* workmgr.h:189:NC */ extern void WMapSetButtonsState (virtualScreen *);
/* workmgr.h:190:NC */ extern void WMapAddWindow (TwmWindow *);
/* workmgr.h:191:NC */ extern void WMapDestroyWindow (TwmWindow *);
/* workmgr.h:192:NC */ extern void WMapMapWindow (TwmWindow *);
/* workmgr.h:193:NC */ extern void WMapSetupWindow (TwmWindow *, int, int, int, int);
/* workmgr.h:194:NC */ extern void WMapIconify (TwmWindow *);
/* workmgr.h:195:NC */ extern void WMapDeIconify (TwmWindow *);
/* workmgr.h:196:NC */ extern void WMapRaiseLower (TwmWindow *);
/* workmgr.h:197:NC */ extern void WMapLower (TwmWindow *);
/* workmgr.h:198:NC */ extern void WMapRaise (TwmWindow *);
/* workmgr.h:199:NC */ extern void WMapRestack (WorkSpace *);
/* workmgr.h:200:NC */ extern void WMapUpdateIconName (TwmWindow *);
/* workmgr.h:201:NC */ extern void WMgrHandleKeyReleaseEvent (virtualScreen *, XEvent *);
/* workmgr.h:202:NC */ extern void WMgrHandleKeyPressEvent (virtualScreen *, XEvent *);
/* workmgr.h:203:NC */ extern void WMgrHandleButtonEvent (virtualScreen *, XEvent *);
/* workmgr.h:204:NC */ extern void InvertColorPair (ColorPair *);
/* workmgr.h:205:NC */ extern void WMapRedrawName (virtualScreen *, WinList);
/* workmgr.h:208:NC */ extern void WMapCreateCurrentBackGround (char *, char *, char *, char *);
/* workmgr.h:211:NC */ extern void WMapCreateDefaultBackGround (char *, char *, char *, char *);
/* workmgr.h:212:NC */ extern char *GetCurrentWorkSpaceName (virtualScreen *);
/* workmgr.h:213:NC */ extern int AnimateRoot (void);
/* workmgr.h:214:NC */ extern void AddToCaptiveList (void);
/* workmgr.h:215:NC */ extern void RemoveFromCaptiveList (void);
/* workmgr.h:216:NC */ extern int RedirectToCaptive (Window);
/* workmgr.h:217:NC */ extern void SetPropsIfCaptiveCtwm (TwmWindow *);
/* workmgr.h:218:NC */ extern Window CaptiveCtwmRootWindow (Window);
/* workmgr.h:220:NC */ extern void MoveToNextWorkSpace (virtualScreen *, TwmWindow *);
/* workmgr.h:221:NC */ extern void MoveToPrevWorkSpace (virtualScreen *, TwmWindow *);
/* workmgr.h:222:NC */ extern void MoveToNextWorkSpaceAndFollow (virtualScreen *, TwmWindow *);
/* workmgr.h:223:NC */ extern void MoveToPrevWorkSpaceAndFollow (virtualScreen *, TwmWindow *);
/* workmgr.h:225:NC */ extern CaptiveCTWM GetCaptiveCTWMUnderPointer (void);
/* workmgr.h:226:NC */ extern void SetNoRedirect (Window);
/* workmgr.h:228:NC */ extern void ShowBackground (virtualScreen *);
/* workmgr.h:230:NC */ extern int visible (TwmWindow *);
/* icons.h:105:NC */ extern int IconUp (TwmWindow *);
/* icons.h:106:NC */ extern void IconDown (TwmWindow *);
/* icons.h:109:NC */ extern name_list **AddIconRegion (char *, int, int, int, int, char *, char *, char *);
/* icons.h:110:NC */ extern int CreateIconWindow (TwmWindow *, int, int);
/* icons.h:111:NC */ extern void ShrinkIconTitle (TwmWindow *);
/* icons.h:112:NC */ extern void ExpandIconTitle (TwmWindow *);
/* icons.h:113:NC */ extern void ReshapeIcon (Icon *);
/* icons.h:114:NC */ extern int GetIconOffset (Icon *);
/* icons.h:115:NC */ extern int AnimateIcons (ScreenInfo *, Icon *);
/* resize.h:67:NC */ extern void MenuStartResize (TwmWindow *, int, int, int, int);
/* resize.h:69:NC */ extern void StartResize (XEvent *, TwmWindow *, int, int);
/* resize.h:70:NC */ extern void AddStartResize (TwmWindow *, int, int, int, int);
/* resize.h:71:NC */ extern void MenuDoResize (int, int, TwmWindow *);
/* resize.h:72:NC */ extern void DoResize (int, int, TwmWindow *);
/* resize.h:73:NC */ extern void DisplaySize (TwmWindow *, int, int);
/* resize.h:74:NC */ extern void EndResize (void);
/* resize.h:75:NC */ extern void MenuEndResize (TwmWindow *);
/* resize.h:76:NC */ extern void AddEndResize (TwmWindow *);
/* resize.h:78:NC */ extern void SetupWindow (TwmWindow *, int, int, int, int, int);
/* resize.h:81:NC */ extern void SetupFrame (TwmWindow *, int, int, int, int, int, int);
/* resize.h:83:NC */ extern void ConstrainSize (TwmWindow *, unsigned int *, unsigned int *);
/* resize.h:85:NC */ extern void fullzoom (TwmWindow *, int);
/* resize.h:86:NC */ extern void savegeometry (TwmWindow *);
/* resize.h:87:NC */ extern void restoregeometry (TwmWindow *);
/* resize.h:88:NC */ extern void SetFrameShape (TwmWindow *);
/* resize.h:90:NC */ extern void ChangeSize (char *, TwmWindow *);
/* add_window.h:73:NC */ extern void GetGravityOffsets (TwmWindow *, int *, int *);
/* add_window.h:74:NC */ extern TwmWindow *AddWindow (Window, int, IconMgr *);
/* add_window.h:75:NC */ extern int MappedNotOverride (Window);
/* add_window.h:76:NC */ extern void AddDefaultBindings (void);
/* add_window.h:77:NC */ extern void GrabButtons (TwmWindow *);
/* add_window.h:78:NC */ extern void GrabKeys (TwmWindow *);
/* add_window.h:83:NC */ extern void GetWindowSizeHints (TwmWindow *);
/* add_window.h:84:NC */ extern void AnimateButton (TBWindow *);
/* add_window.h:85:NC */ extern void AnimateHighlight (TwmWindow *);
/* add_window.h:86:NC */ extern void CreateWindowRegions (void);
/* add_window.h:88:NC */ extern int PlaceWindowInRegion (TwmWindow *, int *, int *);
/* add_window.h:89:NC */ extern void RemoveWindowFromRegion (TwmWindow *);
/* add_window.h:90:NC */ extern name_list **AddWindowRegion (char *, int, int);
/* add_window.h:96:NC */ extern void SetHighlightPixmap (char *);
/* add_window.h:97:NC */ extern int FetchWmColormapWindows (TwmWindow *);
/* add_window.h:98:NC */ extern void FetchWmProtocols (TwmWindow *);
/* add_window.h:100:NC */ extern TwmColormap *CreateTwmColormap (Colormap);
/* add_window.h:103:NC */ extern ColormapWindow *CreateColormapWindow (Window, int, int);
/* events.h:72:NC */ extern void InitEvents (void);
/* events.h:73:NC */ extern int StashEventTime (XEvent *);
/* events.h:75:NC */ extern void SimulateMapRequest (Window);
/* events.h:76:NC */ extern void AutoRaiseWindow (TwmWindow *);
/* events.h:77:NC */ extern void SetRaiseWindow (TwmWindow *);
/* events.h:78:NC */ extern void AutoLowerWindow (TwmWindow *);
/* events.h:80:NC */ extern Window WindowOfEvent (XEvent *);
/* events.h:81:NC */ extern void FixRootEvent (XEvent *);
/* events.h:82:NC */ extern int DispatchEvent (void);
/* events.h:83:NC */ extern int DispatchEvent2 (void);
/* events.h:84:NC */ extern void HandleEvents (void);
/* events.h:85:NC */ extern void HandleExpose (void);
/* events.h:86:NC */ extern void HandleDestroyNotify (void);
/* events.h:87:NC */ extern void HandleMapRequest (void);
/* events.h:88:NC */ extern void HandleMapNotify (void);
/* events.h:89:NC */ extern void HandleUnmapNotify (void);
/* events.h:90:NC */ extern void HandleMotionNotify (void);
/* events.h:91:NC */ extern void HandleButtonRelease (void);
/* events.h:92:NC */ extern void HandleButtonPress (void);
/* events.h:93:NC */ extern void HandleEnterNotify (void);
/* events.h:94:NC */ extern void HandleLeaveNotify (void);
/* events.h:95:NC */ extern void HandleConfigureRequest (void);
/* events.h:96:NC */ extern void HandleClientMessage (void);
/* events.h:97:NC */ extern void HandlePropertyNotify (void);
/* events.h:98:NC */ extern void HandleKeyPress (void);
/* events.h:99:NC */ extern void HandleKeyRelease (void);
/* events.h:100:NC */ extern void HandleColormapNotify (void);
/* events.h:101:NC */ extern void HandleVisibilityNotify (void);
/* events.h:102:NC */ extern void HandleUnknown (void);
/* events.h:103:NC */ extern void HandleFocusIn (XFocusInEvent *);
/* events.h:104:NC */ extern void HandleFocusOut (XFocusOutEvent *);
/* events.h:105:NC */ extern void SynthesiseFocusOut (Window);
/* events.h:106:NC */ extern void SynthesiseFocusIn (Window);
/* events.h:107:NC */ extern int Transient (Window, Window *);
/* events.h:109:NC */ extern ScreenInfo *FindScreenInfo (Window);
/* events.h:111:NC */ extern int InstallWindowColormaps (int, TwmWindow *);
/* events.h:112:NC */ extern void InstallRootColormap (void);
/* events.h:113:NC */ extern void UninstallRootColormap (void);
/* events.h:114:NC */ extern void ConfigureRootWindow (XEvent *);
/* events.h:116:NC */ extern void free_cwins (TwmWindow *);
/* clicktofocus.h:8:NC */ extern TwmWindow *get_last_window (WorkSpace *);
/* clicktofocus.h:9:NC */ extern void set_last_window (WorkSpace *);
/* cursor.h:41:NC */ extern void NewFontCursor (Cursor *, char *);
/* cursor.h:42:NC */ extern int NewBitmapCursor (Cursor *, char *, char *);
/* cursor.h:43:NC */ extern Cursor MakeStringCursor (char *);
/* /usr/include/sys/stat.h:208:NC */ extern int stat (const char *, struct stat *);
/* /usr/include/sys/stat.h:212:NC */ extern int fstat (int, struct stat *);
/* /usr/include/sys/stat.h:236:NC */ extern int lstat (const char *, struct stat *);
/* /usr/include/sys/stat.h:255:NC */ extern int chmod (const char *, __mode_t);
/* /usr/include/sys/stat.h:261:NC */ extern int lchmod (const char *, __mode_t);
/* /usr/include/sys/stat.h:266:NC */ extern int fchmod (int, __mode_t);
/* /usr/include/sys/stat.h:272:NC */ extern __mode_t umask (__mode_t);
/* /usr/include/sys/stat.h:281:NC */ extern int mkdir (const char *, __mode_t);
/* /usr/include/sys/stat.h:288:NC */ extern int mknod (const char *, __mode_t, __dev_t);
/* /usr/include/sys/stat.h:293:NC */ extern int mkfifo (const char *, __mode_t);
/* /usr/include/sys/stat.h:319:NC */ extern int __fxstat (int, int, struct stat *);
/* /usr/include/sys/stat.h:321:NC */ extern int __xstat (int, const char *, struct stat *);
/* /usr/include/sys/stat.h:323:NC */ extern int __lxstat (int, const char *, struct stat *);
/* /usr/include/sys/stat.h:351:NC */ extern int __xmknod (int, const char *, __mode_t, __dev_t *);
/* /usr/include/sys/stat.h:358:NF */ extern int stat (const char *__path, struct stat *__statbuf); /* (__path, __statbuf) const char *__path; struct stat *__statbuf; */
/* /usr/include/sys/stat.h:365:NF */ extern int lstat (const char *__path, struct stat *__statbuf); /* (__path, __statbuf) const char *__path; struct stat *__statbuf; */
/* /usr/include/sys/stat.h:371:NF */ extern int fstat (int __fd, struct stat *__statbuf); /* (__fd, __statbuf) int __fd; struct stat *__statbuf; */
/* /usr/include/sys/stat.h:378:NF */ extern int mknod (const char *__path, __mode_t __mode, __dev_t __dev); /* (__path, __mode, __dev) const char *__path; __mode_t __mode; __dev_t __dev; */
/* /usr/include/fcntl.h:63:NC */ extern int fcntl (int, int, ...);
/* /usr/include/fcntl.h:72:NC */ extern int open (const char *, int, ...);
/* /usr/include/fcntl.h:90:NC */ extern int creat (const char *, __mode_t);
/* /usr/include/fcntl.h:119:NC */ extern int lockf (int, int, __off_t);
/* /usr/include/unistd.h:256:NC */ extern int access (const char *, int);
/* /usr/include/unistd.h:286:NC */ extern __off_t lseek (int, __off_t, int);
/* /usr/include/unistd.h:305:NC */ extern int close (int);
/* /usr/include/unistd.h:312:NC */ extern ssize_t read (int, void *, size_t);
/* /usr/include/unistd.h:318:NC */ extern ssize_t write (int, const void *, size_t);
/* /usr/include/unistd.h:369:NC */ extern int pipe (int *);
/* /usr/include/unistd.h:378:NC */ extern unsigned int alarm (unsigned int);
/* /usr/include/unistd.h:390:NC */ extern unsigned int sleep (unsigned int);
/* /usr/include/unistd.h:398:NC */ extern __useconds_t ualarm (__useconds_t, __useconds_t);
/* /usr/include/unistd.h:405:NC */ extern int usleep (__useconds_t);
/* /usr/include/unistd.h:414:NC */ extern int pause (void);
/* /usr/include/unistd.h:419:NC */ extern int chown (const char *, __uid_t, __gid_t);
/* /usr/include/unistd.h:423:NC */ extern int fchown (int, __uid_t, __gid_t);
/* /usr/include/unistd.h:429:NC */ extern int lchown (const char *, __uid_t, __gid_t);
/* /usr/include/unistd.h:434:NC */ extern int chdir (const char *);
/* /usr/include/unistd.h:438:NC */ extern int fchdir (int);
/* /usr/include/unistd.h:448:NC */ extern char *getcwd (char *, size_t);
/* /usr/include/unistd.h:461:NC */ extern char *getwd (char *);
/* /usr/include/unistd.h:466:NC */ extern int dup (int);
/* /usr/include/unistd.h:469:NC */ extern int dup2 (int, int);
/* /usr/include/unistd.h:481:NC */ extern int execve (const char *, char *const *, char *const *);
/* /usr/include/unistd.h:492:NC */ extern int execv (const char *, char *const *);
/* /usr/include/unistd.h:496:NC */ extern int execle (const char *, const char *, ...);
/* /usr/include/unistd.h:500:NC */ extern int execl (const char *, const char *, ...);
/* /usr/include/unistd.h:504:NC */ extern int execvp (const char *, char *const *);
/* /usr/include/unistd.h:509:NC */ extern int execlp (const char *, const char *, ...);
/* /usr/include/unistd.h:514:NC */ extern int nice (int);
/* /usr/include/unistd.h:519:NC */ extern void _exit (int);
/* /usr/include/unistd.h:528:NC */ extern long int pathconf (const char *, int);
/* /usr/include/unistd.h:531:NC */ extern long int fpathconf (int, int);
/* /usr/include/unistd.h:534:NC */ extern long int sysconf (int);
/* /usr/include/unistd.h:538:NC */ extern size_t confstr (int, char *, size_t);
/* /usr/include/unistd.h:543:NC */ extern __pid_t getpid (void);
/* /usr/include/unistd.h:546:NC */ extern __pid_t getppid (void);
/* /usr/include/unistd.h:551:NC */ extern __pid_t getpgrp (void);
/* /usr/include/unistd.h:561:NC */ extern __pid_t __getpgid (__pid_t);
/* /usr/include/unistd.h:570:NC */ extern int setpgid (__pid_t, __pid_t);
/* /usr/include/unistd.h:587:NC */ extern int setpgrp (void);
/* /usr/include/unistd.h:605:NC */ extern __pid_t setsid (void);
/* /usr/include/unistd.h:613:NC */ extern __uid_t getuid (void);
/* /usr/include/unistd.h:616:NC */ extern __uid_t geteuid (void);
/* /usr/include/unistd.h:619:NC */ extern __gid_t getgid (void);
/* /usr/include/unistd.h:622:NC */ extern __gid_t getegid (void);
/* /usr/include/unistd.h:627:NC */ extern int getgroups (int, __gid_t *);
/* /usr/include/unistd.h:638:NC */ extern int setuid (__uid_t);
/* /usr/include/unistd.h:643:NC */ extern int setreuid (__uid_t, __uid_t);
/* /usr/include/unistd.h:648:NC */ extern int seteuid (__uid_t);
/* /usr/include/unistd.h:655:NC */ extern int setgid (__gid_t);
/* /usr/include/unistd.h:660:NC */ extern int setregid (__gid_t, __gid_t);
/* /usr/include/unistd.h:665:NC */ extern int setegid (__gid_t);
/* /usr/include/unistd.h:690:NC */ extern __pid_t fork (void);
/* /usr/include/unistd.h:697:NC */ extern __pid_t vfork (void);
/* /usr/include/unistd.h:703:NC */ extern char *ttyname (int);
/* /usr/include/unistd.h:707:NC */ extern int ttyname_r (int, char *, size_t);
/* /usr/include/unistd.h:711:NC */ extern int isatty (int);
/* /usr/include/unistd.h:717:NC */ extern int ttyslot (void);
/* /usr/include/unistd.h:722:NC */ extern int link (const char *, const char *);
/* /usr/include/unistd.h:726:NC */ extern int symlink (const char *, const char *);
/* /usr/include/unistd.h:732:NC */ extern int readlink (const char *, char *, size_t);
/* /usr/include/unistd.h:736:NC */ extern int unlink (const char *);
/* /usr/include/unistd.h:739:NC */ extern int rmdir (const char *);
/* /usr/include/unistd.h:743:NC */ extern __pid_t tcgetpgrp (int);
/* /usr/include/unistd.h:746:NC */ extern int tcsetpgrp (int, __pid_t);
/* /usr/include/unistd.h:753:NC */ extern char *getlogin (void);
/* /usr/include/unistd.h:766:NC */ extern int setlogin (const char *);
/* /usr/include/getopt.h:154:NC */ extern int getopt (int, char *const *, const char *);
/* /usr/include/unistd.h:783:NC */ extern int gethostname (char *, size_t);
/* /usr/include/unistd.h:790:NC */ extern int sethostname (const char *, size_t);
/* /usr/include/unistd.h:794:NC */ extern int sethostid (long int);
/* /usr/include/unistd.h:800:NC */ extern int getdomainname (char *, size_t);
/* /usr/include/unistd.h:801:NC */ extern int setdomainname (const char *, size_t);
/* /usr/include/unistd.h:807:NC */ extern int vhangup (void);
/* /usr/include/unistd.h:810:NC */ extern int revoke (const char *);
/* /usr/include/unistd.h:819:NC */ extern int profil (short unsigned int *, size_t, size_t, unsigned int);
/* /usr/include/unistd.h:825:NC */ extern int acct (const char *);
/* /usr/include/unistd.h:829:NC */ extern char *getusershell (void);
/* /usr/include/unistd.h:830:NC */ extern void endusershell (void);
/* /usr/include/unistd.h:831:NC */ extern void setusershell (void);
/* /usr/include/unistd.h:837:NC */ extern int daemon (int, int);
/* /usr/include/unistd.h:844:NC */ extern int chroot (const char *);
/* /usr/include/unistd.h:848:NC */ extern char *getpass (const char *);
/* /usr/include/unistd.h:857:NC */ extern int fsync (int);
/* /usr/include/unistd.h:864:NC */ extern long int gethostid (void);
/* /usr/include/unistd.h:867:NC */ extern void sync (void);
/* /usr/include/unistd.h:872:NC */ extern int getpagesize (void);
/* /usr/include/unistd.h:877:NC */ extern int truncate (const char *, __off_t);
/* /usr/include/unistd.h:893:NC */ extern int ftruncate (int, __off_t);
/* /usr/include/unistd.h:909:NC */ extern int getdtablesize (void);
/* /usr/include/unistd.h:918:NC */ extern int brk (void *);
/* /usr/include/unistd.h:924:NC */ extern void *sbrk (intptr_t);
/* /usr/include/unistd.h:939:NC */ extern long int syscall (long int, ...);
/* /usr/include/unistd.h:993:NC */ extern int fdatasync (int);
/* /usr/include/unistd.h:1001:NC */ extern char *crypt (const char *, const char *);
/* /usr/include/unistd.h:1005:NC */ extern void encrypt (char *, int);
/* /usr/include/unistd.h:1013:NC */ extern void swab (const void *, void *, ssize_t);
/* /usr/include/unistd.h:1021:NC */ extern char *ctermid (char *);
/* /usr/include/sys/time.h:73:NC */ extern int gettimeofday (struct timeval *, __timezone_ptr_t restrict );
/* /usr/include/sys/time.h:79:NC */ extern int settimeofday (const struct timeval *, const struct timezone *);
/* /usr/include/sys/time.h:86:NC */ extern int adjtime (const struct timeval *, struct timeval *);
/* /usr/include/sys/time.h:126:NC */ extern int getitimer (__itimer_which_t, struct itimerval *);
/* /usr/include/sys/time.h:133:NC */ extern int setitimer (__itimer_which_t, const struct itimerval *, struct itimerval *);
/* /usr/include/sys/time.h:139:NC */ extern int utimes (const char *, const struct timeval *);
/* /usr/include/sys/time.h:144:NC */ extern int lutimes (const char *, const struct timeval *);
/* /usr/include/sys/time.h:147:NC */ extern int futimes (int, const struct timeval *);
/* /usr/include/time.h:181:NC */ extern clock_t clock (void);
/* /usr/include/time.h:184:NC */ extern time_t time (time_t *);
/* /usr/include/time.h:188:NC */ extern double difftime (time_t, time_t);
/* /usr/include/time.h:191:NC */ extern time_t mktime (struct tm *);
/* /usr/include/time.h:199:NC */ extern size_t strftime (char *, size_t, const char *, const struct tm *);
/* /usr/include/time.h:207:NC */ extern char *strptime (const char *, const char *, struct tm *);
/* /usr/include/time.h:229:NC */ extern struct tm *gmtime (const time_t *);
/* /usr/include/time.h:233:NC */ extern struct tm *localtime (const time_t *);
/* /usr/include/time.h:240:NC */ extern struct tm *gmtime_r (const time_t *, struct tm *);
/* /usr/include/time.h:245:NC */ extern struct tm *localtime_r (const time_t *, struct tm *);
/* /usr/include/time.h:251:NC */ extern char *asctime (const struct tm *);
/* /usr/include/time.h:254:NC */ extern char *ctime (const time_t *);
/* /usr/include/time.h:263:NC */ extern char *asctime_r (const struct tm *, char *);
/* /usr/include/time.h:267:NC */ extern char *ctime_r (const time_t *, char *);
/* /usr/include/time.h:283:NC */ extern void tzset (void);
/* /usr/include/time.h:294:NC */ extern int stime (const time_t *);
/* /usr/include/time.h:309:NC */ extern time_t timegm (struct tm *);
/* /usr/include/time.h:312:NC */ extern time_t timelocal (struct tm *);
/* /usr/include/time.h:315:NC */ extern int dysize (int);
/* /usr/include/time.h:325:NC */ extern int nanosleep (const struct timespec *, struct timespec *);
/* /usr/include/time.h:329:NC */ extern int clock_getres (clockid_t, struct timespec *);
/* /usr/include/time.h:332:NC */ extern int clock_gettime (clockid_t, struct timespec *);
/* /usr/include/time.h:336:NC */ extern int clock_settime (clockid_t, const struct timespec *);
/* /usr/include/time.h:355:NC */ extern int timer_create (clockid_t, struct sigevent *, timer_t *);
/* /usr/include/time.h:358:NC */ extern int timer_delete (timer_t);
/* /usr/include/time.h:363:NC */ extern int timer_settime (timer_t, int, const struct itimerspec *, struct itimerspec *);
/* /usr/include/time.h:367:NC */ extern int timer_gettime (timer_t, struct itimerspec *);
/* /usr/include/time.h:370:NC */ extern int timer_getoverrun (timer_t);
/* /usr/X11R6/include/X11/Xmu/CharSet.h:47:NC */ extern void XmuCopyISOLatin1Lowered (char *, const char *);
/* /usr/X11R6/include/X11/Xmu/CharSet.h:53:NC */ extern void XmuCopyISOLatin1Uppered (char *, const char *);
/* /usr/X11R6/include/X11/Xmu/CharSet.h:59:NC */ extern int XmuCompareISOLatin1 (const char *, const char *);
/* /usr/X11R6/include/X11/Xmu/CharSet.h:66:NC */ extern void XmuNCopyISOLatin1Lowered (char *, const char *, int);
/* /usr/X11R6/include/X11/Xmu/CharSet.h:73:NC */ extern void XmuNCopyISOLatin1Uppered (char *, const char *, int);
/* workmgr.c:66:NC */ extern void twmrc_error_prefix (void);
/* workmgr.c:88:NC */ static void Vanish (virtualScreen *, TwmWindow *);
/* workmgr.c:90:NC */ static void DisplayWin (virtualScreen *, TwmWindow *);
/* workmgr.c:91:NC */ static void CreateWorkSpaceManagerWindow (virtualScreen *);
/* workmgr.c:92:NC */ static void CreateOccupyWindow (void);
/* workmgr.c:93:NC */ static unsigned int GetMaskFromResource (TwmWindow *, char *);
/* workmgr.c:95:NC */ static int GetPropertyFromMask (unsigned int, char *, int *);
/* workmgr.c:96:NC */ static void PaintWorkSpaceManagerBorder (virtualScreen *);
/* workmgr.c:100:NC */ static void PaintButton (int, virtualScreen *, Window, char *, ColorPair, int);
/* workmgr.c:101:NC */ static void WMapRemoveFromList (TwmWindow *, WorkSpace *);
/* workmgr.c:102:NC */ static void WMapAddToList (TwmWindow *, WorkSpace *);
/* workmgr.c:103:NC */ static void ResizeWorkSpaceManager (virtualScreen *, TwmWindow *);
/* workmgr.c:104:NC */ static void ResizeOccupyWindow (TwmWindow *);
/* workmgr.c:105:NC */ static WorkSpace *GetWorkspace (char *);
/* workmgr.c:107:NC */ static void WMapRedrawWindow (Window, int, int, ColorPair, char *);
/* workmgr.c:119:NC */ static int DontRedirect (Window);
/* workmgr.c:126:NF */ extern void InitWorkSpaceManager (void); /* () */
/* workmgr.c:157:NF */ extern void ConfigureWorkSpaceManager (void); /* () */
/* workmgr.c:179:NF */ extern void CreateWorkSpaceManager (void); /* () */
/* workmgr.c:245:NF */ extern void GotoWorkSpaceByName (virtualScreen *vs, char *wname); /* (vs, wname) virtualScreen *vs; char *wname; */
/* workmgr.c:263:NF */ extern void GotoWorkSpaceByNumber (virtualScreen *vs, int workspacenum); /* (vs, workspacenum) virtualScreen *vs; int workspacenum; */
/* workmgr.c:276:NF */ extern void GotoPrevWorkSpace (virtualScreen *vs); /* (vs) virtualScreen *vs; */
/* workmgr.c:293:NF */ extern void GotoNextWorkSpace (virtualScreen *vs); /* (vs) virtualScreen *vs; */
/* workmgr.c:304:NF */ extern void GotoRightWorkSpace (virtualScreen *vs); /* (vs) virtualScreen *vs; */
/* workmgr.c:323:NF */ extern void GotoLeftWorkSpace (virtualScreen *vs); /* (vs) virtualScreen *vs; */
/* workmgr.c:342:NF */ extern void GotoUpWorkSpace (virtualScreen *vs); /* (vs) virtualScreen *vs; */
/* workmgr.c:362:NF */ extern void GotoDownWorkSpace (virtualScreen *vs); /* (vs) virtualScreen *vs; */
/* workmgr.c:382:NF */ extern void ShowBackground (virtualScreen *vs); /* (vs) virtualScreen *vs; */
/* workmgr.c:405:NF */ extern void GotoWorkSpace (virtualScreen *vs, WorkSpace *ws); /* (vs, ws) virtualScreen *vs; WorkSpace *ws; */
/* workmgr.c:586:NF */ extern char *GetCurrentWorkSpaceName (virtualScreen *vs); /* (vs) virtualScreen *vs; */
/* workmgr.c:594:NF */ extern void AddWorkSpace (char *name, char *background, char *foreground, char *backback, char *backfore, char *backpix); /* (name, background, foreground, backback, backfore, backpix) char *name; char *background; char *foreground; char *backback; char *backfore; char *backpix; */
/* workmgr.c:677:NF */ extern void SetupOccupation (TwmWindow *twm_win, int occupation_hint); /* (twm_win, occupation_hint) TwmWindow *twm_win; int occupation_hint; */
/* workmgr.c:823:NF */ extern int RedirectToCaptive (Window window); /* (window) Window window; */
/* workmgr.c:890:NF */ extern void Occupy (TwmWindow *twm_win); /* (twm_win) TwmWindow *twm_win; */
/* workmgr.c:945:NF */ extern void OccupyHandleButtonEvent (XEvent *event); /* (event) XEvent *event; */
/* workmgr.c:1007:NF */ extern void OccupyAll (TwmWindow *twm_win); /* (twm_win) TwmWindow *twm_win; */
/* workmgr.c:1020:NF */ extern void AddToWorkSpace (char *wname, TwmWindow *twm_win); /* (wname, twm_win) char *wname; TwmWindow *twm_win; */
/* workmgr.c:1036:NF */ extern void RemoveFromWorkSpace (char *wname, TwmWindow *twm_win); /* (wname, twm_win) char *wname; TwmWindow *twm_win; */
/* workmgr.c:1052:NF */ extern void ToggleOccupation (char *wname, TwmWindow *twm_win); /* (wname, twm_win) char *wname; TwmWindow *twm_win; */
/* workmgr.c:1072:NF */ extern void MoveToNextWorkSpace (virtualScreen *vs, TwmWindow *twm_win); /* (vs, twm_win) virtualScreen *vs; TwmWindow *twm_win; */
/* workmgr.c:1095:NF */ extern void MoveToNextWorkSpaceAndFollow (virtualScreen *vs, TwmWindow *twm_win); /* (vs, twm_win) virtualScreen *vs; TwmWindow *twm_win; */
/* workmgr.c:1124:NF */ extern void MoveToPrevWorkSpace (virtualScreen *vs, TwmWindow *twm_win); /* (vs, twm_win) virtualScreen *vs; TwmWindow *twm_win; */
/* workmgr.c:1149:NF */ extern void MoveToPrevWorkSpaceAndFollow (virtualScreen *vs, TwmWindow *twm_win); /* (vs, twm_win) virtualScreen *vs; TwmWindow *twm_win; */
/* workmgr.c:1177:NF */ static WorkSpace *GetWorkspace (char *wname); /* (wname) char *wname; */
/* workmgr.c:1193:NF */ extern void AllocateOthersIconManagers (void); /* () */
/* workmgr.c:1226:NF */ static void Vanish (virtualScreen *vs, TwmWindow *tmp_win); /* (vs, tmp_win) virtualScreen *vs; TwmWindow *tmp_win; */
/* workmgr.c:1252:NF */ static void DisplayWin (virtualScreen *vs, TwmWindow *tmp_win); /* (vs, tmp_win) virtualScreen *vs; TwmWindow *tmp_win; */
/* workmgr.c:1298:NF */ extern void ChangeOccupation (TwmWindow *tmp_win, int newoccupation); /* (tmp_win, newoccupation) TwmWindow *tmp_win; int newoccupation; */
/* workmgr.c:1439:NF */ extern void WmgrRedoOccupation (TwmWindow *win); /* (win) TwmWindow *win; */
/* workmgr.c:1458:NF */ extern void WMgrRemoveFromCurrentWorkSpace (virtualScreen *vs, TwmWindow *win); /* (vs, win) virtualScreen *vs; TwmWindow *win; */
/* workmgr.c:1472:NF */ extern void WMgrAddToCurrentWorkSpaceAndWarp (virtualScreen *vs, char *winname); /* (vs, winname) virtualScreen *vs; char *winname; */
/* workmgr.c:1508:NF */ static void CreateWorkSpaceManagerWindow (virtualScreen *vs); /* (vs) virtualScreen *vs; */
/* workmgr.c:1725:NF */ extern void WMgrHandleExposeEvent (virtualScreen *vs, XEvent *event); /* (vs, event) virtualScreen *vs; XEvent *event; */
/* workmgr.c:1755:NF */ extern void PaintWorkSpaceManager (virtualScreen *vs); /* (vs) virtualScreen *vs; */
/* workmgr.c:1769:NF */ static void PaintWorkSpaceManagerBorder (virtualScreen *vs); /* (vs) virtualScreen *vs; */
/* workmgr.c:1783:NF */ static void CreateOccupyWindow (void); /* () */
/* workmgr.c:1958:NF */ extern void PaintOccupyWindow (void); /* () */
/* workmgr.c:1985:NF */ static void PaintButton (int which, virtualScreen *vs, Window w, char *label, ColorPair cp, int state); /* (which, vs, w, label, cp, state) int which; virtualScreen *vs; Window w; char *label; ColorPair cp; int state; */
/* workmgr.c:2102:NF */ static unsigned int GetMaskFromResource (TwmWindow *win, char *res); /* (win, res) TwmWindow *win; char *res; */
/* workmgr.c:2162:NF */ extern unsigned int GetMaskFromProperty (unsigned char *prop, long unsigned int len); /* (prop, len) unsigned char *prop; long unsigned int len; */
/* workmgr.c:2194:NF */ static int GetPropertyFromMask (unsigned int mask, char *prop, int *gwkspc); /* (mask, prop, gwkspc) unsigned int mask; char *prop; int *gwkspc; */
/* workmgr.c:2217:NF */ extern void AddToClientsList (char *workspace, char *client); /* (workspace, client) char *workspace; char *client; */
/* workmgr.c:2235:NF */ extern void WMapToggleState (virtualScreen *vs); /* (vs) virtualScreen *vs; */
/* workmgr.c:2244:NF */ extern void WMapSetMapState (virtualScreen *vs); /* (vs) virtualScreen *vs; */
/* workmgr.c:2257:NF */ extern void WMapSetButtonsState (virtualScreen *vs); /* (vs) virtualScreen *vs; */
/* workmgr.c:2269:NF */ extern void WMapAddWindow (TwmWindow *win); /* (win) TwmWindow *win; */
/* workmgr.c:2286:NF */ extern void WMapDestroyWindow (TwmWindow *win); /* (win) TwmWindow *win; */
/* workmgr.c:2302:NF */ extern void WMapMapWindow (TwmWindow *win); /* (win) TwmWindow *win; */
/* workmgr.c:2321:NF */ extern void WMapSetupWindow (TwmWindow *win, int x, int y, int w, int h); /* (win, x, y, w, h) TwmWindow *win; int x; int y; int w; int h; */
/* workmgr.c:2375:NF */ extern void WMapIconify (TwmWindow *win); /* (win) TwmWindow *win; */
/* workmgr.c:2391:NF */ extern void WMapDeIconify (TwmWindow *win); /* (win) TwmWindow *win; */
/* workmgr.c:2411:NF */ extern void WMapRaiseLower (TwmWindow *win); /* (win) TwmWindow *win; */
/* workmgr.c:2420:NF */ extern void WMapLower (TwmWindow *win); /* (win) TwmWindow *win; */
/* workmgr.c:2429:NF */ extern void WMapRaise (TwmWindow *win); /* (win) TwmWindow *win; */
/* workmgr.c:2438:NF */ extern void WMapRestack (WorkSpace *ws); /* (ws) WorkSpace *ws; */
/* workmgr.c:2479:NF */ extern void WMapUpdateIconName (TwmWindow *win); /* (win) TwmWindow *win; */
/* workmgr.c:2497:NF */ extern void WMgrHandleKeyReleaseEvent (virtualScreen *vs, XEvent *event); /* (vs, event) virtualScreen *vs; XEvent *event; */
/* workmgr.c:2518:NF */ extern void WMgrHandleKeyPressEvent (virtualScreen *vs, XEvent *event); /* (vs, event) virtualScreen *vs; XEvent *event; */
/* workmgr.c:2572:NF */ extern void WMgrHandleButtonEvent (virtualScreen *vs, XEvent *event); /* (vs, event) virtualScreen *vs; XEvent *event; */
/* workmgr.c:2888:NF */ extern void InvertColorPair (ColorPair *cp); /* (cp) ColorPair *cp; */
/* workmgr.c:2900:NF */ extern void WMapRedrawName (virtualScreen *vs, WinList wl); /* (vs, wl) virtualScreen *vs; WinList wl; */
/* workmgr.c:2917:NF */ static void WMapRedrawWindow (Window window, int width, int height, ColorPair cp, char *label); /* (window, width, height, cp, label) Window window; int width; int height; ColorPair cp; char *label; */
/* workmgr.c:2994:NF */ static void WMapAddToList (TwmWindow *win, WorkSpace *ws); /* (win, ws) TwmWindow *win; WorkSpace *ws; */
/* workmgr.c:3056:NF */ static void WMapRemoveFromList (TwmWindow *win, WorkSpace *ws); /* (win, ws) TwmWindow *win; WorkSpace *ws; */
/* workmgr.c:3091:NF */ static void ResizeWorkSpaceManager (virtualScreen *vs, TwmWindow *win); /* (vs, win) virtualScreen *vs; TwmWindow *win; */
/* workmgr.c:3153:NF */ static void ResizeOccupyWindow (TwmWindow *win); /* (win) TwmWindow *win; */
/* workmgr.c:3208:NF */ extern void WMapCreateCurrentBackGround (char *border, char *background, char *foreground, char *pixmap); /* (border, background, foreground, pixmap) char *border; char *background; char *foreground; char *pixmap; */
/* workmgr.c:3239:NF */ extern void WMapCreateDefaultBackGround (char *border, char *background, char *foreground, char *pixmap); /* (border, background, foreground, pixmap) char *border; char *background; char *foreground; char *pixmap; */
/* workmgr.c:3264:NF */ extern int AnimateRoot (void); /* () */
/* workmgr.c:3310:NF */ static char **GetCaptivesList (int scrnum); /* (scrnum) int scrnum; */
/* workmgr.c:3353:NF */ static void SetCaptivesList (int scrnum, char **clist); /* (scrnum, clist) int scrnum; char **clist; */
/* workmgr.c:3379:NF */ static void freeCaptiveList (char **clist); /* (clist) char **clist; */
/* workmgr.c:3384:NF */ extern void AddToCaptiveList (void); /* () */
/* workmgr.c:3448:NF */ extern void RemoveFromCaptiveList (void); /* () */
/* workmgr.c:3483:NF */ extern void SetPropsIfCaptiveCtwm (TwmWindow *win); /* (win) TwmWindow *win; */
/* workmgr.c:3497:NF */ extern Window CaptiveCtwmRootWindow (Window window); /* (window) Window window; */
/* workmgr.c:3518:NF */ extern CaptiveCTWM GetCaptiveCTWMUnderPointer (void); /* () */
/* workmgr.c:3540:NF */ extern void SetNoRedirect (Window window); /* (window) Window window; */
/* workmgr.c:3551:NF */ static int DontRedirect (Window window); /* (window) Window window; */
/* workmgr.c:3570:NF */ extern int visible (TwmWindow *tmp_win); /* (tmp_win) TwmWindow *tmp_win; */