Add g_unichar_iszerowidth(). (#347645)
[platform/upstream/glib.git] / docs / reference / glib / glib-sections.txt
1 <INCLUDE>glib.h</INCLUDE>
2
3 <SECTION>
4 <TITLE>Basic Types</TITLE>
5 <FILE>types</FILE>
6 gboolean
7 gpointer
8 gconstpointer
9 gchar
10 guchar
11
12 <SUBSECTION>
13 gint
14 guint
15 gshort
16 gushort
17 glong
18 gulong
19
20 <SUBSECTION>
21 gint8
22 guint8
23 gint16
24 guint16
25 gint32
26 guint32
27
28 <SUBSECTION>
29 G_HAVE_GINT64
30 gint64
31 guint64
32 G_GINT64_CONSTANT
33 G_GUINT64_CONSTANT
34
35 <SUBSECTION>
36 gfloat
37 gdouble
38
39 <SUBSECTION>
40 gsize
41 gssize
42
43 <SUBSECTION Private>
44 GLIB_SIZEOF_VOID_P
45 GLIB_SIZEOF_LONG
46 GLIB_SIZEOF_SIZE_T
47 </SECTION>
48
49 <SECTION>
50 <TITLE>Limits of Basic Types</TITLE>
51 <FILE>limits</FILE>
52 G_MININT
53 G_MAXINT
54 G_MAXUINT
55
56 <SUBSECTION>
57 G_MINSHORT
58 G_MAXSHORT
59 G_MAXUSHORT
60
61 <SUBSECTION>
62 G_MINLONG
63 G_MAXLONG
64 G_MAXULONG
65
66 <SUBSECTION>
67 G_MININT8
68 G_MAXINT8
69 G_MAXUINT8
70
71 <SUBSECTION>
72 G_MININT16
73 G_MAXINT16
74 G_MAXUINT16
75
76 <SUBSECTION>
77 G_MININT32
78 G_MAXINT32
79 G_MAXUINT32
80
81 <SUBSECTION>
82 G_MININT64
83 G_MAXINT64
84 G_MAXUINT64
85
86 <SUBSECTION>
87 G_MAXSIZE
88
89 <SUBSECTION>
90 G_MINFLOAT
91 G_MAXFLOAT
92
93 <SUBSECTION>
94 G_MINDOUBLE
95 G_MAXDOUBLE
96 </SECTION>
97
98 <SECTION>
99 <TITLE>Version Information</TITLE>
100 <FILE>version</FILE>
101 glib_major_version
102 glib_minor_version
103 glib_micro_version
104 glib_binary_age
105 glib_interface_age
106 glib_check_version
107
108 <SUBSECTION>
109 GLIB_MAJOR_VERSION
110 GLIB_MINOR_VERSION
111 GLIB_MICRO_VERSION
112 GLIB_CHECK_VERSION
113 </SECTION>
114
115 <SECTION>
116 <TITLE>Standard Macros</TITLE>
117 <FILE>macros</FILE>
118 <SUBSECTION>
119 G_OS_WIN32
120 G_OS_BEOS
121 G_OS_UNIX
122
123 <SUBSECTION>
124 G_DIR_SEPARATOR
125 G_DIR_SEPARATOR_S
126 G_IS_DIR_SEPARATOR
127 G_SEARCHPATH_SEPARATOR
128 G_SEARCHPATH_SEPARATOR_S
129
130 <SUBSECTION>
131 TRUE
132 FALSE
133
134 <SUBSECTION>
135 NULL
136
137 <SUBSECTION>
138 MIN
139 MAX
140
141 <SUBSECTION>
142 ABS
143 CLAMP
144
145 <SUBSECTION>
146 G_STRUCT_MEMBER
147 G_STRUCT_MEMBER_P
148 G_STRUCT_OFFSET
149
150 <SUBSECTION>
151 G_MEM_ALIGN
152
153 <SUBSECTION>
154 G_CONST_RETURN
155
156 </SECTION>
157
158 <SECTION>
159 <TITLE>Type Conversion Macros</TITLE>
160 <FILE>type_conversion</FILE>
161 GINT_TO_POINTER
162 GPOINTER_TO_INT
163
164 <SUBSECTION>
165 GUINT_TO_POINTER
166 GPOINTER_TO_UINT
167 GSIZE_TO_POINTER
168 GPOINTER_TO_SIZE
169 </SECTION>
170
171 <SECTION>
172 <TITLE>Byte Order Macros</TITLE>
173 <FILE>byte_order</FILE>
174 G_BYTE_ORDER
175 G_LITTLE_ENDIAN
176 G_BIG_ENDIAN
177 G_PDP_ENDIAN
178
179 <SUBSECTION>
180 g_htonl
181 g_htons
182 g_ntohl
183 g_ntohs
184
185 <SUBSECTION>
186 GINT_FROM_BE
187 GINT_FROM_LE
188 GINT_TO_BE
189 GINT_TO_LE
190
191 <SUBSECTION>
192 GUINT_FROM_BE
193 GUINT_FROM_LE
194 GUINT_TO_BE
195 GUINT_TO_LE
196
197 <SUBSECTION>
198 GLONG_FROM_BE
199 GLONG_FROM_LE
200 GLONG_TO_BE
201 GLONG_TO_LE
202
203 <SUBSECTION>
204 GULONG_FROM_BE
205 GULONG_FROM_LE
206 GULONG_TO_BE
207 GULONG_TO_LE
208
209 <SUBSECTION>
210 GINT16_FROM_BE
211 GINT16_FROM_LE
212 GINT16_TO_BE
213 GINT16_TO_LE
214
215 <SUBSECTION>
216 GUINT16_FROM_BE
217 GUINT16_FROM_LE
218 GUINT16_TO_BE
219 GUINT16_TO_LE
220
221 <SUBSECTION>
222 GINT32_FROM_BE
223 GINT32_FROM_LE
224 GINT32_TO_BE
225 GINT32_TO_LE
226
227 <SUBSECTION>
228 GUINT32_FROM_BE
229 GUINT32_FROM_LE
230 GUINT32_TO_BE
231 GUINT32_TO_LE
232
233 <SUBSECTION>
234 GINT64_FROM_BE
235 GINT64_FROM_LE
236 GINT64_TO_BE
237 GINT64_TO_LE
238
239 <SUBSECTION>
240 GUINT64_FROM_BE
241 GUINT64_FROM_LE
242 GUINT64_TO_BE
243 GUINT64_TO_LE
244
245 <SUBSECTION>
246 GUINT16_SWAP_BE_PDP
247 GUINT16_SWAP_LE_BE
248 GUINT16_SWAP_LE_PDP
249
250 <SUBSECTION>
251 GUINT32_SWAP_BE_PDP
252 GUINT32_SWAP_LE_BE
253 GUINT32_SWAP_LE_PDP
254
255 <SUBSECTION>
256 GUINT64_SWAP_LE_BE
257
258 <SUBSECTION Private>
259 GUINT16_SWAP_LE_BE_CONSTANT
260 GUINT32_SWAP_LE_BE_CONSTANT
261 GUINT64_SWAP_LE_BE_CONSTANT
262 GUINT16_SWAP_LE_BE_IA32
263 GUINT32_SWAP_LE_BE_IA32
264 GUINT64_SWAP_LE_BE_IA32
265 GUINT16_SWAP_LE_BE_IA64
266 GUINT32_SWAP_LE_BE_IA64
267 GUINT64_SWAP_LE_BE_IA64
268 GUINT32_SWAP_LE_BE_X86_64
269 GUINT64_SWAP_LE_BE_X86_64
270
271 </SECTION>
272
273 <SECTION>
274 <TITLE>Numerical Definitions</TITLE>
275 <FILE>numerical</FILE>
276 G_IEEE754_FLOAT_BIAS
277 G_IEEE754_DOUBLE_BIAS
278 GFloatIEEE754
279 GDoubleIEEE754
280
281 <SUBSECTION>
282 <SUBSECTION>
283 G_E
284 G_LN2
285 G_LN10
286 G_PI
287 G_PI_2
288 G_PI_4
289 G_SQRT2
290 G_LOG_2_BASE_10
291 </SECTION>
292
293 <SECTION>
294 <TITLE>Miscellaneous Macros</TITLE>
295 <FILE>macros_misc</FILE>
296 G_INLINE_FUNC
297
298 <SUBSECTION>
299 G_STMT_START
300 G_STMT_END
301
302 <SUBSECTION>
303 G_BEGIN_DECLS
304 G_END_DECLS
305
306 <SUBSECTION>
307 G_N_ELEMENTS
308
309 <SUBSECTION>
310 G_VA_COPY
311
312 <SUBSECTION>
313 G_STRINGIFY
314
315 <SUBSECTION>
316 G_GNUC_EXTENSION
317 G_GNUC_CONST
318 G_GNUC_PURE
319 G_GNUC_MALLOC
320 G_GNUC_DEPRECATED
321 G_GNUC_NORETURN
322 G_GNUC_UNUSED
323 G_GNUC_PRINTF
324 G_GNUC_SCANF
325 G_GNUC_FORMAT
326 G_GNUC_NULL_TERMINATED
327 G_GNUC_WARN_UNUSED_RESULT
328 G_GNUC_FUNCTION
329 G_GNUC_PRETTY_FUNCTION
330 G_GNUC_NO_INSTRUMENT
331 G_HAVE_GNUC_VISIBILITY
332 G_GNUC_INTERNAL
333
334 <SUBSECTION>
335 G_LIKELY
336 G_UNLIKELY
337
338 <SUBSECTION>
339 G_STRLOC
340 G_STRFUNC
341
342 <SUBSECTION>
343 G_GINT16_MODIFIER
344 G_GINT16_FORMAT
345 G_GUINT16_FORMAT
346 G_GINT32_MODIFIER
347 G_GINT32_FORMAT
348 G_GUINT32_FORMAT
349 G_GINT64_MODIFIER
350 G_GINT64_FORMAT
351 G_GUINT64_FORMAT
352 G_GSIZE_MODIFIER
353 G_GSIZE_FORMAT
354 G_GSSIZE_FORMAT
355
356 <SUBSECTION Private>
357 GLIB_VAR
358 G_STRINGIFY_ARG
359 G_HAVE_INLINE
360 G_CAN_INLINE
361 inline
362 G_HAVE___INLINE
363 G_HAVE___INLINE__
364 G_HAVE_GNUC_VARARGS
365 G_HAVE_ISO_VARARGS
366 G_HAVE_GROWING_STACK
367 </SECTION>
368
369 <SECTION>
370 <TITLE>Error Reporting</TITLE>
371 <FILE>error_reporting</FILE>
372 GError
373 g_error_new
374 g_error_new_literal
375 g_error_free
376 g_error_copy
377 g_error_matches
378 g_set_error
379 g_propagate_error
380 g_clear_error
381 </SECTION>
382
383 <SECTION>
384 <TITLE>The Main Event Loop</TITLE>
385 <FILE>main</FILE>
386 GMainLoop
387 g_main_loop_new
388 g_main_loop_ref
389 g_main_loop_unref
390 g_main_loop_run
391 g_main_loop_quit
392 g_main_loop_is_running
393 g_main_loop_get_context
394 g_main_new
395 g_main_destroy
396 g_main_run
397 g_main_quit
398 g_main_is_running
399
400 <SUBSECTION>
401 G_PRIORITY_HIGH
402 G_PRIORITY_DEFAULT
403 G_PRIORITY_HIGH_IDLE
404 G_PRIORITY_DEFAULT_IDLE
405 G_PRIORITY_LOW
406
407 <SUBSECTION>
408 GMainContext
409 g_main_context_new
410 g_main_context_ref
411 g_main_context_unref
412 g_main_context_default
413 g_main_context_iteration
414 g_main_iteration
415 g_main_context_pending
416 g_main_pending
417 g_main_context_find_source_by_id
418 g_main_context_find_source_by_user_data
419 g_main_context_find_source_by_funcs_user_data
420 g_main_context_wakeup
421 g_main_context_acquire
422 g_main_context_release
423 g_main_context_is_owner
424 g_main_context_wait
425 g_main_context_prepare
426 g_main_context_query
427 g_main_context_check
428 g_main_context_dispatch
429 g_main_context_set_poll_func
430 g_main_context_get_poll_func
431 GPollFunc
432 g_main_context_add_poll
433 g_main_context_remove_poll
434 g_main_depth
435 g_main_current_source
436 g_main_set_poll_func
437
438 <SUBSECTION>
439 g_timeout_source_new
440 g_timeout_source_new_seconds
441 g_timeout_add
442 g_timeout_add_full
443 g_timeout_add_seconds
444
445 <SUBSECTION>
446 g_idle_source_new
447 g_idle_add
448 g_idle_add_full
449 g_idle_remove_by_data
450
451 <SUBSECTION>
452 GPid
453 GChildWatchFunc
454 g_child_watch_source_new
455 g_child_watch_add
456 g_child_watch_add_full
457 <SUBSECTION>
458 GPollFD
459
460 <SUBSECTION>
461 GSource
462 GSourceDummyMarshal
463 GSourceFuncs
464 GSourceCallbackFuncs
465 g_source_new
466 g_source_ref
467 g_source_unref
468 g_source_set_funcs
469 g_source_attach
470 g_source_destroy
471 g_source_is_destroyed
472 g_source_set_priority
473 g_source_get_priority
474 g_source_set_can_recurse
475 g_source_get_can_recurse
476 g_source_get_id
477 g_source_get_context
478 g_source_set_callback
479 GSourceFunc
480 g_source_set_callback_indirect
481 g_source_add_poll
482 g_source_remove_poll
483 g_source_get_current_time
484 g_source_remove
485 g_source_remove_by_funcs_user_data
486 g_source_remove_by_user_data
487
488 <SUBSECTION Private>
489 GLIB_HAVE_SYS_POLL_H
490 GLIB_HAVE_ALLOCA_H
491 alloca
492 GLIB_SYSDEF_POLLERR
493 GLIB_SYSDEF_POLLHUP
494 GLIB_SYSDEF_POLLIN
495 GLIB_SYSDEF_POLLNVAL
496 GLIB_SYSDEF_POLLOUT
497 GLIB_SYSDEF_POLLPRI
498 G_WIN32_MSG_HANDLE
499 g_idle_funcs
500 g_timeout_funcs
501 g_child_watch_funcs
502 </SECTION>
503
504 <SECTION>
505 <TITLE>Threads</TITLE>
506 <FILE>threads</FILE>
507 <SUBSECTION>
508 G_THREADS_ENABLED
509 G_THREADS_IMPL_POSIX
510 G_THREADS_IMPL_NONE
511
512 <SUBSECTION>
513 G_THREAD_ERROR
514 GThreadError
515
516 <SUBSECTION>
517 GThreadFunctions
518 g_thread_init
519 g_thread_supported
520
521 <SUBSECTION>
522 GThreadFunc
523 GThreadPriority
524 GThread
525 g_thread_create
526 g_thread_create_full
527 g_thread_self
528 g_thread_join
529 g_thread_set_priority
530 g_thread_yield
531 g_thread_exit
532 g_thread_foreach
533
534 <SUBSECTION>
535 GMutex
536 g_mutex_new
537 g_mutex_lock
538 g_mutex_trylock
539 g_mutex_unlock
540 g_mutex_free
541
542 <SUBSECTION>
543 GStaticMutex
544 G_STATIC_MUTEX_INIT
545 g_static_mutex_init
546 g_static_mutex_lock
547 g_static_mutex_trylock
548 g_static_mutex_unlock
549 g_static_mutex_get_mutex
550 g_static_mutex_free
551
552 <SUBSECTION>
553 G_LOCK_DEFINE
554 G_LOCK_DEFINE_STATIC
555 G_LOCK_EXTERN
556 G_LOCK
557 G_TRYLOCK
558 G_UNLOCK
559
560 <SUBSECTION>
561 GStaticRecMutex
562 G_STATIC_REC_MUTEX_INIT
563 g_static_rec_mutex_init
564 g_static_rec_mutex_lock
565 g_static_rec_mutex_trylock
566 g_static_rec_mutex_unlock
567 g_static_rec_mutex_lock_full
568 g_static_rec_mutex_unlock_full
569 g_static_rec_mutex_free
570
571 <SUBSECTION>
572 GStaticRWLock
573 G_STATIC_RW_LOCK_INIT
574 g_static_rw_lock_init
575 g_static_rw_lock_reader_lock
576 g_static_rw_lock_reader_trylock
577 g_static_rw_lock_reader_unlock
578 g_static_rw_lock_writer_lock
579 g_static_rw_lock_writer_trylock
580 g_static_rw_lock_writer_unlock
581 g_static_rw_lock_free
582
583 <SUBSECTION>
584 GCond
585 g_cond_new
586 g_cond_signal
587 g_cond_broadcast
588 g_cond_wait
589 g_cond_timed_wait
590 g_cond_free
591
592 <SUBSECTION>
593 GPrivate
594 g_private_new
595 g_private_get
596 g_private_set
597
598 <SUBSECTION>
599 GStaticPrivate
600 G_STATIC_PRIVATE_INIT
601 g_static_private_init
602 g_static_private_get
603 g_static_private_set
604 g_static_private_free
605
606 <SUBSECTION>
607 GOnce
608 GOnceStatus
609 G_ONCE_INIT
610 g_once
611
612 <SUBSECTION Private>
613 G_THREAD_ECF
614 G_THREAD_CF
615 G_THREAD_UF
616 g_static_mutex_get_mutex_impl
617 g_static_mutex_get_mutex_impl_shortcut
618 G_MUTEX_DEBUG_MAGIC
619 g_thread_init_with_errorcheck_mutexes
620 G_LOCK_NAME
621 glib_dummy_decl
622 GSystemThread
623 g_thread_use_default_impl
624 g_threads_got_initialized
625 g_thread_functions_for_glib_use
626 g_thread_init_glib
627 g_thread_error_quark
628 g_once_impl
629 </SECTION>
630
631 <SECTION>
632 <TITLE>Thread Pools</TITLE>
633 <FILE>thread_pools</FILE>
634 GThreadPool
635 g_thread_pool_new
636 g_thread_pool_push
637 g_thread_pool_set_max_threads
638 g_thread_pool_get_max_threads
639 g_thread_pool_get_num_threads
640 g_thread_pool_unprocessed
641 g_thread_pool_free
642 g_thread_pool_set_max_unused_threads
643 g_thread_pool_get_max_unused_threads
644 g_thread_pool_get_num_unused_threads
645 g_thread_pool_stop_unused_threads
646 g_thread_pool_set_sort_function
647 g_thread_pool_set_max_idle_time
648 g_thread_pool_get_max_idle_time
649 </SECTION>
650
651 <SECTION>
652 <TITLE>Asynchronous Queues</TITLE>
653 <FILE>async_queues</FILE>
654 GAsyncQueue
655 g_async_queue_new
656 g_async_queue_ref
657 g_async_queue_unref
658 g_async_queue_push
659 g_async_queue_push_sorted
660 g_async_queue_pop
661 g_async_queue_try_pop
662 g_async_queue_timed_pop
663 g_async_queue_length
664 g_async_queue_sort
665
666 <SUBSECTION>
667 g_async_queue_lock
668 g_async_queue_unlock
669 g_async_queue_ref_unlocked
670 g_async_queue_unref_and_unlock
671 g_async_queue_push_unlocked
672 g_async_queue_push_sorted_unlocked
673 g_async_queue_pop_unlocked
674 g_async_queue_try_pop_unlocked
675 g_async_queue_timed_pop_unlocked
676 g_async_queue_length_unlocked
677 g_async_queue_sort_unlocked
678 </SECTION>
679
680 <SECTION>
681 <TITLE>Atomic Operations</TITLE>
682 <FILE>atomic_operations</FILE>g
683 g_atomic_int_get
684 g_atomic_int_set
685 g_atomic_int_add
686 g_atomic_int_exchange_and_add
687 g_atomic_int_compare_and_exchange
688 g_atomic_pointer_get
689 g_atomic_pointer_set
690 g_atomic_pointer_compare_and_exchange
691 g_atomic_int_inc
692 g_atomic_int_dec_and_test
693 </SECTION>
694
695 <SECTION>
696 <TITLE>IO Channels</TITLE>
697 <FILE>iochannels</FILE>
698 GIOChannel
699
700 <SUBSECTION>
701 g_io_channel_unix_new
702 g_io_channel_unix_get_fd
703 g_io_channel_win32_new_fd
704 g_io_channel_win32_new_socket
705 g_io_channel_win32_new_messages
706
707 <SUBSECTION>
708 g_io_channel_init
709
710 <SUBSECTION>
711 g_io_channel_new_file
712 g_io_channel_read_chars
713 g_io_channel_read_unichar
714 g_io_channel_read_line
715 g_io_channel_read_line_string
716 g_io_channel_read_to_end
717 g_io_channel_write_chars
718 g_io_channel_write_unichar
719 g_io_channel_flush
720 g_io_channel_seek_position
721 GSeekType
722 g_io_channel_shutdown
723
724 <SUBSECTION>
725 GIOStatus
726 GIOChannelError
727 G_IO_CHANNEL_ERROR
728 g_io_channel_error_from_errno
729
730 <SUBSECTION>
731 g_io_channel_ref
732 g_io_channel_unref
733
734 <SUBSECTION>
735 g_io_create_watch
736 g_io_add_watch
737 g_io_add_watch_full
738 GIOCondition
739 GIOFunc
740
741 <SUBSECTION>
742 GIOFuncs
743
744 <SUBSECTION>
745 g_io_channel_get_buffer_size
746 g_io_channel_set_buffer_size
747 g_io_channel_get_buffer_condition
748 g_io_channel_get_flags
749 g_io_channel_set_flags
750 GIOFlags
751 g_io_channel_get_line_term
752 g_io_channel_set_line_term
753 g_io_channel_get_buffered
754 g_io_channel_set_buffered
755 g_io_channel_get_encoding
756 g_io_channel_set_encoding
757 g_io_channel_get_close_on_unref
758 g_io_channel_set_close_on_unref
759
760 <SUBSECTION Private>
761 g_io_channel_win32_poll
762 g_io_channel_win32_make_pollfd
763 g_io_channel_win32_get_fd
764  
765 <SUBSECTION>
766 g_io_channel_read
767 GIOError
768 g_io_channel_write
769 g_io_channel_seek
770 g_io_channel_close
771
772 <SUBSECTION Private>
773 g_io_channel_error_quark
774 g_io_watch_funcs
775 </SECTION>
776
777 <SECTION>
778 <TITLE>Memory Allocation</TITLE>
779 <FILE>memory</FILE>
780 g_new
781 g_new0
782 g_renew
783 g_try_new
784 g_try_new0
785 g_try_renew
786
787 <SUBSECTION>
788 g_malloc
789 g_malloc0
790 g_realloc
791 g_try_malloc
792 g_try_malloc0
793 g_try_realloc
794
795 <SUBSECTION>
796 g_free
797 g_mem_gc_friendly
798
799 <SUBSECTION>
800 g_alloca
801 g_newa
802
803 <SUBSECTION>
804 g_memmove
805 g_memdup
806
807 <SUBSECTION>
808 GMemVTable
809 g_mem_set_vtable
810 g_mem_is_system_malloc
811
812 <SUBSECTION>
813 glib_mem_profiler_table
814 g_mem_profile
815 </SECTION>
816
817 <SECTION>
818 <TITLE>Warnings and Assertions</TITLE>
819 <FILE>warnings</FILE>
820 g_print
821 g_set_print_handler
822 GPrintFunc
823
824 <SUBSECTION>
825 g_printerr
826 g_set_printerr_handler
827
828 <SUBSECTION>
829 g_return_if_fail
830 g_return_val_if_fail
831 g_return_if_reached
832 g_return_val_if_reached
833
834 <SUBSECTION>
835 g_assert
836 g_assert_not_reached
837
838 <SUBSECTION>
839 g_on_error_query
840 g_on_error_stack_trace
841
842 <SUBSECTION>
843 G_BREAKPOINT
844
845 <SUBSECTION Private>
846 g_return_if_fail_warning
847 g_assert_warning
848 </SECTION>
849
850 <SECTION>
851 <TITLE>Glob-style pattern matching</TITLE>
852 <FILE>patterns</FILE>
853 GPatternSpec
854 g_pattern_spec_new
855 g_pattern_spec_free
856 g_pattern_spec_equal
857 g_pattern_match
858 g_pattern_match_string
859 g_pattern_match_simple
860 </SECTION>
861
862 <SECTION>
863 <TITLE>Message Logging</TITLE>
864 <FILE>messages</FILE>
865 G_LOG_DOMAIN
866 G_LOG_FATAL_MASK
867 G_LOG_LEVEL_USER_SHIFT
868 GLogFunc
869 GLogLevelFlags
870
871 <SUBSECTION>
872 g_log
873 g_logv
874 g_message
875 g_warning
876 g_critical
877 g_error
878 g_debug
879
880 <SUBSECTION>
881 g_log_set_handler
882 g_log_remove_handler
883 g_log_set_always_fatal
884 g_log_set_fatal_mask
885 g_log_default_handler
886 g_log_set_default_handler
887 </SECTION>
888
889 <SECTION>
890 <TITLE>Timers</TITLE>
891 <FILE>timers</FILE>
892 GTimer
893 g_timer_new
894 g_timer_start
895 g_timer_stop
896 g_timer_continue
897 g_timer_elapsed
898 g_timer_reset
899 g_timer_destroy
900 </SECTION>
901
902 <SECTION>
903 <TITLE>Spawning Processes</TITLE>
904 <FILE>spawn</FILE>
905 GSpawnError
906 G_SPAWN_ERROR
907 GSpawnFlags
908 GSpawnChildSetupFunc
909 g_spawn_async_with_pipes
910 g_spawn_async
911 g_spawn_sync
912 g_spawn_command_line_async
913 g_spawn_command_line_sync
914 g_spawn_close_pid
915 <SUBSECTION Private>
916 g_spawn_error_quark
917 </SECTION>
918
919 <SECTION>
920 <TITLE>Simple XML Subset Parser</TITLE>
921 <FILE>markup</FILE>
922 GMarkupError
923 G_MARKUP_ERROR
924 GMarkupParseFlags
925 GMarkupParseContext
926 GMarkupParser
927 g_markup_escape_text
928 g_markup_printf_escaped
929 g_markup_vprintf_escaped
930 g_markup_parse_context_end_parse
931 g_markup_parse_context_free
932 g_markup_parse_context_get_position
933 g_markup_parse_context_get_element
934 g_markup_parse_context_new
935 g_markup_parse_context_parse
936 <SUBSECTION Private>
937 g_markup_error_quark
938 </SECTION>
939
940
941 <SECTION>
942 <TITLE>Shell-related Utilities</TITLE>
943 <FILE>shell</FILE>
944 GShellError
945 G_SHELL_ERROR
946 g_shell_parse_argv
947 g_shell_quote
948 g_shell_unquote
949 <SUBSECTION Private>
950 g_shell_error_quark
951 </SECTION>
952
953
954 <SECTION>
955 <TITLE>Commandline option parser</TITLE>
956 <FILE>option</FILE>
957 GOptionError
958 G_OPTION_ERROR
959 GOptionArgFunc
960 GOptionContext
961 g_option_context_new
962 g_option_context_set_summary
963 g_option_context_get_summary
964 g_option_context_set_description
965 g_option_context_get_description
966 GTranslateFunc
967 g_option_context_set_translate_func
968 g_option_context_set_translation_domain
969 g_option_context_free
970 g_option_context_parse
971 g_option_context_set_help_enabled
972 g_option_context_get_help_enabled
973 g_option_context_set_ignore_unknown_options
974 g_option_context_get_ignore_unknown_options
975 GOptionArg
976 GOptionFlags
977 G_OPTION_REMAINING
978 GOptionEntry
979 g_option_context_add_main_entries
980 GOptionGroup
981 g_option_context_add_group
982 g_option_context_set_main_group
983 g_option_context_get_main_group
984 g_option_group_new
985 g_option_group_free
986 g_option_group_add_entries
987 GOptionParseFunc
988 g_option_group_set_parse_hooks
989 GOptionErrorFunc
990 g_option_group_set_error_hook
991 g_option_group_set_translate_func
992 g_option_group_set_translation_domain
993 <SUBSECTION Private>
994 g_option_error_quark
995 </SECTION>
996
997
998 <SECTION>
999 <TITLE>File Utilities</TITLE>
1000 <FILE>fileutils</FILE>
1001 <INCLUDE>glib.h,glib/gstdio.h</INCLUDE>
1002 GFileError
1003 G_FILE_ERROR
1004 GFileTest
1005 g_file_error_from_errno
1006 g_file_get_contents
1007 g_file_set_contents
1008 g_file_test
1009 g_mkstemp
1010 g_file_open_tmp
1011 g_file_read_link
1012 g_mkdir_with_parents
1013
1014 <SUBSECTION>
1015 GDir
1016 g_dir_open
1017 g_dir_read_name
1018 g_dir_rewind
1019 g_dir_close
1020
1021 <SUBSECTION>
1022 GMappedFile
1023 g_mapped_file_new
1024 g_mapped_file_free
1025 g_mapped_file_get_length
1026 g_mapped_file_get_contents
1027
1028 <SUBSECTION>
1029 g_open
1030 g_rename
1031 g_mkdir
1032 g_stat
1033 g_lstat
1034 g_unlink
1035 g_remove
1036 g_rmdir
1037 g_fopen
1038 g_freopen
1039 g_chmod
1040 g_access
1041 g_creat
1042 g_chdir
1043
1044 <SUBSECTION Private>
1045 g_file_error_quark
1046 </SECTION>
1047
1048
1049 <SECTION>
1050 <TITLE>String Utility Functions</TITLE>
1051 <FILE>string_utils</FILE>
1052 <INCLUDE>glib.h,glib/gprintf.h</INCLUDE>
1053 g_strdup
1054 g_strndup
1055 g_strdupv
1056 g_strnfill
1057 g_stpcpy
1058 g_strstr_len
1059 g_strrstr
1060 g_strrstr_len
1061 g_str_has_prefix
1062 g_str_has_suffix
1063
1064 <SUBSECTION>
1065 g_strlcpy
1066 g_strlcat
1067
1068 <SUBSECTION>
1069 g_strdup_printf
1070 g_strdup_vprintf
1071 g_printf
1072 g_vprintf
1073 g_fprintf
1074 g_vfprintf
1075 g_sprintf
1076 g_vsprintf
1077 g_snprintf
1078 g_vsnprintf
1079 g_vasprintf
1080 g_printf_string_upper_bound
1081
1082 <SUBSECTION>
1083 g_ascii_isalnum
1084 g_ascii_isalpha
1085 g_ascii_iscntrl
1086 g_ascii_isdigit
1087 g_ascii_isgraph
1088 g_ascii_islower
1089 g_ascii_isprint
1090 g_ascii_ispunct
1091 g_ascii_isspace
1092 g_ascii_isupper
1093 g_ascii_isxdigit
1094
1095 <SUBSECTION>
1096 g_ascii_digit_value
1097 g_ascii_xdigit_value
1098
1099 <SUBSECTION>
1100 g_ascii_strcasecmp
1101 g_ascii_strncasecmp
1102
1103 <SUBSECTION>
1104 g_ascii_strup
1105 g_ascii_strdown
1106
1107 <SUBSECTION>
1108 g_ascii_tolower
1109 g_ascii_toupper
1110
1111 <SUBSECTION>
1112 g_string_ascii_up
1113 g_string_ascii_down
1114
1115 <SUBSECTION>
1116 g_strup
1117 g_strdown
1118
1119 <SUBSECTION>
1120 g_strcasecmp
1121 g_strncasecmp
1122
1123 <SUBSECTION>
1124 g_strreverse
1125
1126 <SUBSECTION>
1127 g_ascii_strtoll
1128 g_ascii_strtoull
1129 G_ASCII_DTOSTR_BUF_SIZE
1130 g_ascii_strtod
1131 g_ascii_dtostr
1132 g_ascii_formatd
1133 g_strtod
1134
1135 <SUBSECTION>
1136 g_strchug
1137 g_strchomp
1138 g_strstrip
1139
1140 <SUBSECTION>
1141 g_strdelimit
1142 G_STR_DELIMITERS
1143 g_strescape
1144 g_strcompress
1145 g_strcanon
1146 g_strsplit
1147 g_strsplit_set
1148 g_strfreev
1149 g_strconcat
1150 g_strjoin
1151 g_strjoinv
1152 g_strv_length
1153
1154 <SUBSECTION>
1155 g_strerror
1156 g_strsignal
1157
1158 <SUBSECTION Private>
1159 GAsciiType
1160 </SECTION>
1161
1162 <SECTION>
1163 <TITLE>Date and Time Functions</TITLE>
1164 <FILE>date</FILE>
1165 G_USEC_PER_SEC
1166 GTimeVal
1167 g_get_current_time
1168 g_usleep
1169 g_time_val_add
1170 g_time_val_from_iso8601
1171 g_time_val_to_iso8601
1172
1173 <SUBSECTION>
1174 GDate
1175 GTime
1176 GDateDMY
1177 GDateDay
1178 GDateMonth
1179 GDateYear
1180 GDateWeekday
1181
1182 <SUBSECTION>
1183 G_DATE_BAD_DAY
1184 G_DATE_BAD_JULIAN
1185 G_DATE_BAD_YEAR
1186
1187 <SUBSECTION>
1188 g_date_new
1189 g_date_new_dmy
1190 g_date_new_julian
1191 g_date_clear
1192 g_date_free
1193
1194 <SUBSECTION>
1195 g_date_set_day
1196 g_date_set_month
1197 g_date_set_year
1198 g_date_set_dmy
1199 g_date_set_julian
1200 g_date_set_time
1201 g_date_set_time_t
1202 g_date_set_time_val
1203 g_date_set_parse
1204
1205 <SUBSECTION>
1206 g_date_add_days
1207 g_date_subtract_days
1208 g_date_add_months
1209 g_date_subtract_months
1210 g_date_add_years
1211 g_date_subtract_years
1212 g_date_days_between
1213 g_date_compare
1214 g_date_clamp
1215 g_date_order
1216
1217 <SUBSECTION>
1218 g_date_get_day
1219 g_date_get_month
1220 g_date_get_year
1221 g_date_get_julian
1222 g_date_get_weekday
1223 g_date_get_day_of_year
1224
1225 <SUBSECTION>
1226 g_date_get_days_in_month
1227 g_date_is_first_of_month
1228 g_date_is_last_of_month
1229 g_date_is_leap_year
1230 g_date_get_monday_week_of_year
1231 g_date_get_monday_weeks_in_year
1232 g_date_get_sunday_week_of_year
1233 g_date_get_sunday_weeks_in_year
1234 g_date_get_iso8601_week_of_year
1235
1236 <SUBSECTION>
1237 g_date_strftime
1238 g_date_to_struct_tm
1239
1240 <SUBSECTION>
1241 g_date_valid
1242 g_date_valid_day
1243 g_date_valid_month
1244 g_date_valid_year
1245 g_date_valid_dmy
1246 g_date_valid_julian
1247 g_date_valid_weekday
1248
1249 <SUBSECTION Private>
1250 g_date_weekday
1251 g_date_month
1252 g_date_year
1253 g_date_day
1254 g_date_julian
1255 g_date_day_of_year
1256 g_date_monday_week_of_year
1257 g_date_sunday_week_of_year
1258 g_date_days_in_month
1259 g_date_monday_weeks_in_year
1260 g_date_sunday_weeks_in_year
1261 tm
1262 </SECTION>
1263
1264 <SECTION>
1265 <TITLE>Hook Functions</TITLE>
1266 <FILE>hooks</FILE>
1267 GHookList
1268 GHookFinalizeFunc
1269 GHook
1270 GHookFunc
1271 GHookCheckFunc
1272
1273 <SUBSECTION>
1274 g_hook_list_init
1275 g_hook_list_invoke
1276 g_hook_list_invoke_check
1277 g_hook_list_marshal
1278 GHookMarshaller
1279 g_hook_list_marshal_check
1280 GHookCheckMarshaller
1281 g_hook_list_clear
1282
1283 <SUBSECTION>
1284 g_hook_alloc
1285 g_hook_append
1286 g_hook_prepend
1287 g_hook_insert_before
1288 g_hook_insert_sorted
1289 GHookCompareFunc
1290 g_hook_compare_ids
1291
1292 <SUBSECTION>
1293 g_hook_get
1294 g_hook_find
1295 GHookFindFunc
1296 g_hook_find_data
1297 g_hook_find_func
1298 g_hook_find_func_data
1299
1300 <SUBSECTION>
1301 g_hook_first_valid
1302 g_hook_next_valid
1303
1304 GHookFlagMask
1305 G_HOOK_FLAGS
1306 G_HOOK_FLAG_USER_SHIFT
1307
1308 <SUBSECTION>
1309 G_HOOK
1310 G_HOOK_IS_VALID
1311 G_HOOK_ACTIVE
1312 G_HOOK_IN_CALL
1313 G_HOOK_IS_UNLINKED
1314
1315 <SUBSECTION>
1316 g_hook_ref
1317 g_hook_unref
1318
1319 g_hook_free
1320 g_hook_destroy
1321 g_hook_destroy_link
1322 </SECTION>
1323
1324 <SECTION>
1325 <TITLE>Miscellaneous Utility Functions</TITLE>
1326 <FILE>misc_utils</FILE>
1327 g_get_application_name
1328 g_set_application_name
1329 g_get_prgname
1330 g_set_prgname
1331 g_getenv
1332 g_setenv
1333 g_unsetenv
1334 g_listenv
1335 g_get_user_name
1336 g_get_real_name
1337 g_get_user_cache_dir
1338 g_get_user_data_dir
1339 g_get_user_config_dir
1340 g_get_system_data_dirs
1341 g_get_system_config_dirs
1342
1343 <SUBSECTION>
1344 g_get_host_name
1345 g_get_home_dir
1346 g_get_tmp_dir
1347 g_get_current_dir
1348 g_basename
1349 g_dirname
1350 g_path_is_absolute
1351 g_path_skip_root
1352 g_path_get_basename
1353 g_path_get_dirname
1354 g_build_filename
1355 g_build_filenamev
1356 g_build_path
1357 g_build_pathv
1358
1359 <SUBSECTION>
1360 g_find_program_in_path
1361
1362 <SUBSECTION>
1363 g_bit_nth_lsf
1364 g_bit_nth_msf
1365 g_bit_storage
1366
1367 <SUBSECTION>
1368 g_spaced_primes_closest
1369
1370 <SUBSECTION>
1371 g_atexit
1372
1373 <SUBSECTION>
1374 g_parse_debug_string
1375 GDebugKey
1376
1377 <SUBSECTION>
1378 GVoidFunc
1379 GFreeFunc
1380
1381 <SUBSECTION>
1382 g_qsort_with_data
1383
1384 <SUBSECTION>
1385 g_nullify_pointer
1386
1387 <SUBSECTION Private>
1388 G_NATIVE_ATEXIT
1389 g_ATEXIT
1390 g_win32_get_system_data_dirs_for_module
1391 ATEXIT
1392
1393 </SECTION>
1394
1395 <SECTION>
1396 <TITLE>Lexical Scanner</TITLE>
1397 <FILE>scanner</FILE>
1398 GScanner
1399 g_scanner_new
1400 GScannerConfig
1401
1402 <SUBSECTION>
1403 g_scanner_input_file
1404 g_scanner_sync_file_offset
1405 g_scanner_input_text
1406 g_scanner_peek_next_token
1407 g_scanner_get_next_token
1408
1409 <SUBSECTION>
1410 g_scanner_cur_line
1411 g_scanner_cur_position
1412 g_scanner_cur_token
1413 g_scanner_cur_value
1414 g_scanner_eof
1415
1416 <SUBSECTION>
1417 g_scanner_set_scope
1418 g_scanner_scope_add_symbol
1419 g_scanner_scope_foreach_symbol
1420 g_scanner_scope_lookup_symbol
1421 g_scanner_scope_remove_symbol
1422
1423 <SUBSECTION>
1424 g_scanner_freeze_symbol_table
1425 g_scanner_thaw_symbol_table
1426 g_scanner_lookup_symbol
1427
1428 <SUBSECTION>
1429 g_scanner_warn
1430 g_scanner_error
1431 g_scanner_unexp_token
1432 GScannerMsgFunc
1433
1434 <SUBSECTION>
1435 g_scanner_destroy
1436
1437 <SUBSECTION>
1438 GTokenType
1439 GTokenValue
1440 GErrorType
1441 G_CSET_a_2_z
1442 G_CSET_A_2_Z
1443 G_CSET_DIGITS
1444 G_CSET_LATINC
1445 G_CSET_LATINS
1446
1447 <SUBSECTION>
1448 g_scanner_add_symbol
1449 g_scanner_remove_symbol
1450 g_scanner_foreach_symbol
1451 </SECTION>
1452
1453 <SECTION>
1454 <TITLE>Key-value file parser</TITLE>
1455 <FILE>keyfile</FILE>
1456 GKeyFile
1457 G_KEY_FILE_ERROR
1458 GKeyFileError
1459 GKeyFileFlags
1460 g_key_file_new
1461 g_key_file_free
1462 g_key_file_set_list_separator
1463 g_key_file_load_from_file
1464 g_key_file_load_from_data
1465 g_key_file_load_from_data_dirs
1466 g_key_file_to_data
1467 g_key_file_get_start_group
1468 g_key_file_get_groups
1469 g_key_file_get_keys
1470 g_key_file_has_group
1471 g_key_file_has_key
1472
1473 <SUBSECTION>
1474 g_key_file_get_value
1475 g_key_file_get_string
1476 g_key_file_get_locale_string
1477 g_key_file_get_boolean
1478 g_key_file_get_integer
1479 g_key_file_get_double
1480 g_key_file_get_string_list
1481 g_key_file_get_locale_string_list
1482 g_key_file_get_boolean_list
1483 g_key_file_get_integer_list
1484 g_key_file_get_double_list
1485 g_key_file_get_comment
1486
1487 <SUBSECTION>
1488 g_key_file_set_value
1489 g_key_file_set_string
1490 g_key_file_set_locale_string
1491 g_key_file_set_boolean
1492 g_key_file_set_integer
1493 g_key_file_set_double
1494 g_key_file_set_string_list
1495 g_key_file_set_locale_string_list
1496 g_key_file_set_boolean_list
1497 g_key_file_set_integer_list
1498 g_key_file_set_double_list
1499 g_key_file_set_comment
1500 g_key_file_remove_group
1501 g_key_file_remove_key
1502 g_key_file_remove_comment
1503
1504 <SUBSECTION Private>
1505 g_key_file_error_quark
1506 </SECTION>
1507
1508 <SECTION>
1509 <TITLE>Bookmark file parser</TITLE>
1510 <FILE>bookmarkfile</FILE>
1511 GBookmarkFile
1512 G_BOOKMARK_FILE_ERROR
1513 GBookmarkFileError
1514 g_bookmark_file_new
1515 g_bookmark_file_free
1516 g_bookmark_file_load_from_file
1517 g_bookmark_file_load_from_data
1518 g_bookmark_file_load_from_data_dirs
1519 g_bookmark_file_to_data
1520 g_bookmark_file_to_file
1521 g_bookmark_file_has_item
1522 g_bookmark_file_has_group
1523 g_bookmark_file_has_application
1524 g_bookmark_file_get_size
1525 g_bookmark_file_get_uris G_GNUC_MALLOC
1526
1527 <SUBSECTION>
1528 g_bookmark_file_get_title
1529 g_bookmark_file_get_description
1530 g_bookmark_file_get_mime_type
1531 g_bookmark_file_get_is_private
1532 g_bookmark_file_get_icon
1533 g_bookmark_file_get_added
1534 g_bookmark_file_get_modified
1535 g_bookmark_file_get_visited
1536 g_bookmark_file_get_groups
1537 g_bookmark_file_get_applications
1538 g_bookmark_file_get_app_info
1539
1540 <SUBSECTION>
1541 g_bookmark_file_set_title
1542 g_bookmark_file_set_description
1543 g_bookmark_file_set_mime_type
1544 g_bookmark_file_set_is_private
1545 g_bookmark_file_set_icon
1546 g_bookmark_file_set_added
1547 g_bookmark_file_set_groups
1548 g_bookmark_file_set_modified
1549 g_bookmark_file_set_visited
1550 g_bookmark_file_set_app_info
1551 g_bookmark_file_add_group
1552 g_bookmark_file_add_application
1553 g_bookmark_file_remove_group
1554 g_bookmark_file_remove_application
1555 g_bookmark_file_remove_item
1556 g_bookmark_file_move_item
1557
1558 <SUBSECTION Private>
1559 g_bookmark_file_error_quark
1560 </SECTION>
1561
1562 <SECTION>
1563 <TITLE>Dynamic Loading of Modules</TITLE>
1564 <FILE>modules</FILE>
1565 <INCLUDE>gmodule.h</INCLUDE>
1566 GModule
1567 g_module_supported
1568 g_module_build_path
1569 g_module_open
1570 GModuleFlags
1571 g_module_symbol
1572 g_module_name
1573 g_module_make_resident
1574 g_module_close
1575 g_module_error
1576 <SUBSECTION>
1577 GModuleCheckInit
1578 GModuleUnload
1579 G_MODULE_SUFFIX
1580 G_MODULE_EXPORT
1581 G_MODULE_IMPORT
1582 </SECTION>
1583
1584 <SECTION>
1585 <TITLE>Automatic String Completion</TITLE>
1586 <FILE>completion</FILE>
1587 GCompletion
1588 g_completion_new
1589 GCompletionFunc
1590 g_completion_add_items
1591 g_completion_remove_items
1592 g_completion_clear_items
1593 g_completion_complete
1594 g_completion_complete_utf8
1595 g_completion_set_compare
1596 GCompletionStrncmpFunc
1597 g_completion_free
1598 </SECTION>
1599
1600 <SECTION>
1601 <TITLE>Windows Compatibility Functions</TITLE>
1602 <FILE>windows</FILE>
1603 MAXPATHLEN
1604 pipe
1605
1606 g_win32_error_message
1607 g_win32_getlocale
1608 g_win32_get_package_installation_directory
1609 g_win32_get_package_installation_subdirectory
1610 g_win32_get_windows_version
1611 g_win32_locale_filename_from_utf8
1612 G_WIN32_DLLMAIN_FOR_DLL_NAME
1613 G_WIN32_HAVE_WIDECHAR_API
1614 G_WIN32_IS_NT_BASED
1615
1616 <SUBSECTION Private>
1617 g_win32_ftruncate
1618
1619 </SECTION>
1620
1621 # Data Structures
1622
1623 <SECTION>
1624 <TITLE>Memory Chunks</TITLE>
1625 <FILE>memory_chunks</FILE>
1626 GMemChunk
1627 G_ALLOC_AND_FREE
1628 G_ALLOC_ONLY
1629
1630 <SUBSECTION>
1631 g_mem_chunk_new
1632 g_mem_chunk_alloc
1633 g_mem_chunk_alloc0
1634 g_mem_chunk_free
1635 g_mem_chunk_destroy
1636
1637 <SUBSECTION>
1638 g_mem_chunk_create
1639 g_chunk_new
1640 g_chunk_new0
1641 g_chunk_free
1642
1643 <SUBSECTION>
1644 g_mem_chunk_reset
1645 g_mem_chunk_clean
1646 g_blow_chunks
1647
1648 <SUBSECTION>
1649 g_mem_chunk_info
1650 g_mem_chunk_print
1651
1652 </SECTION>
1653
1654 <SECTION>
1655 <TITLE>Memory Slices</TITLE>
1656 <FILE>memory_slices</FILE>
1657 g_slice_alloc
1658 g_slice_alloc0
1659 g_slice_free1
1660 g_slice_free_chain_with_offset
1661
1662 <SUBSECTION>
1663 g_slice_new
1664 g_slice_new0
1665 g_slice_free
1666 g_slice_free_chain
1667
1668 <SUBSECTION Private>
1669 GSliceConfig
1670 g_slice_set_config
1671 g_slice_get_config
1672 g_slice_get_config_state
1673 </SECTION>
1674
1675 <SECTION>
1676 <TITLE>Doubly-Linked Lists</TITLE>
1677 <FILE>linked_lists_double</FILE>
1678 GList
1679
1680 <SUBSECTION>
1681 g_list_append
1682 g_list_prepend
1683 g_list_insert
1684 g_list_insert_before
1685 g_list_insert_sorted
1686 g_list_remove
1687 g_list_remove_link
1688 g_list_delete_link
1689 g_list_remove_all
1690 g_list_free
1691
1692 <SUBSECTION>
1693 g_list_alloc
1694 g_list_free_1
1695 g_list_free1
1696
1697 <SUBSECTION>
1698 g_list_length
1699 g_list_copy
1700 g_list_reverse
1701 g_list_sort
1702 GCompareFunc
1703 g_list_insert_sorted_with_data
1704 g_list_sort_with_data
1705 GCompareDataFunc
1706 g_list_concat
1707 g_list_foreach
1708 GFunc
1709
1710 <SUBSECTION>
1711 g_list_first
1712 g_list_last
1713 g_list_previous
1714 g_list_next
1715 g_list_nth
1716 g_list_nth_data
1717 g_list_nth_prev
1718
1719 <SUBSECTION>
1720 g_list_find
1721 g_list_find_custom
1722 g_list_position
1723 g_list_index
1724
1725 <SUBSECTION>
1726 g_list_push_allocator
1727 g_list_pop_allocator
1728 </SECTION>
1729
1730 <SECTION>
1731 <TITLE>Singly-Linked Lists</TITLE>
1732 <FILE>linked_lists_single</FILE>
1733 GSList
1734
1735 <SUBSECTION>
1736 g_slist_alloc
1737 g_slist_append
1738 g_slist_prepend
1739 g_slist_insert
1740 g_slist_insert_before
1741 g_slist_insert_sorted
1742 g_slist_remove
1743 g_slist_remove_link
1744 g_slist_delete_link
1745 g_slist_remove_all
1746 g_slist_free
1747 g_slist_free_1
1748 g_slist_free1
1749
1750 <SUBSECTION>
1751 g_slist_length
1752 g_slist_copy
1753 g_slist_reverse
1754 g_slist_insert_sorted_with_data
1755 g_slist_sort
1756 g_slist_sort_with_data
1757 g_slist_concat
1758 g_slist_foreach
1759
1760 <SUBSECTION>
1761 g_slist_last
1762 g_slist_next
1763 g_slist_nth
1764 g_slist_nth_data
1765
1766 <SUBSECTION>
1767 g_slist_find
1768 g_slist_find_custom
1769 g_slist_position
1770 g_slist_index
1771
1772 <SUBSECTION>
1773 g_slist_push_allocator
1774 g_slist_pop_allocator
1775 </SECTION>
1776
1777 <SECTION>
1778 <TITLE>Double-ended Queues</TITLE>
1779 <FILE>queue</FILE>
1780
1781 GQueue
1782 g_queue_new
1783 g_queue_free
1784 g_queue_is_empty
1785 g_queue_get_length
1786 g_queue_reverse
1787 g_queue_copy
1788 g_queue_foreach
1789 g_queue_find
1790 g_queue_find_custom
1791 g_queue_sort
1792 g_queue_push_head
1793 g_queue_push_tail
1794 g_queue_push_nth
1795 g_queue_pop_head
1796 g_queue_pop_tail
1797 g_queue_pop_nth
1798 g_queue_peek_head
1799 g_queue_peek_tail
1800 g_queue_peek_nth
1801 g_queue_index
1802 g_queue_remove
1803 g_queue_remove_all
1804 g_queue_insert_before
1805 g_queue_insert_after
1806 g_queue_insert_sorted
1807 g_queue_push_head_link
1808 g_queue_push_tail_link
1809 g_queue_push_nth_link
1810 g_queue_pop_head_link
1811 g_queue_pop_tail_link
1812 g_queue_pop_nth_link
1813 g_queue_peek_head_link
1814 g_queue_peek_tail_link
1815 g_queue_peek_nth_link
1816 g_queue_link_index
1817 g_queue_unlink
1818 g_queue_delete_link
1819 </SECTION>
1820
1821 <SECTION>
1822 <TITLE>Trash Stacks</TITLE>
1823 <FILE>trash_stack</FILE>
1824 GTrashStack
1825
1826 g_trash_stack_push
1827 g_trash_stack_pop
1828 g_trash_stack_peek
1829 g_trash_stack_height
1830 </SECTION>
1831
1832 <SECTION>
1833 <TITLE>Hash Tables</TITLE>
1834 <FILE>hash_tables</FILE>
1835 GHashTable
1836 g_hash_table_new
1837 g_hash_table_new_full
1838 GHashFunc
1839 GEqualFunc
1840 g_hash_table_insert
1841 g_hash_table_replace
1842 g_hash_table_size
1843 g_hash_table_lookup
1844 g_hash_table_lookup_extended
1845 g_hash_table_foreach
1846 g_hash_table_find
1847 GHFunc
1848 g_hash_table_remove
1849 g_hash_table_steal
1850 g_hash_table_foreach_remove
1851 g_hash_table_foreach_steal
1852 g_hash_table_remove_all
1853 g_hash_table_steal_all
1854 GHRFunc
1855 g_hash_table_freeze
1856 g_hash_table_thaw
1857 g_hash_table_destroy
1858 g_hash_table_ref
1859 g_hash_table_unref
1860
1861 <SUBSECTION>
1862 g_direct_equal
1863 g_direct_hash
1864 g_int_equal
1865 g_int_hash
1866 g_str_equal
1867 g_str_hash
1868
1869 </SECTION>
1870
1871 <SECTION>
1872 <TITLE>Strings</TITLE>
1873 <FILE>strings</FILE>
1874 GString
1875 g_string_new
1876 g_string_new_len
1877 g_string_sized_new
1878 g_string_assign
1879 g_string_sprintf
1880 g_string_sprintfa
1881 g_string_printf
1882 g_string_append_printf
1883 g_string_append
1884 g_string_append_c
1885 g_string_append_unichar
1886 g_string_append_len
1887 g_string_prepend
1888 g_string_prepend_c
1889 g_string_prepend_unichar
1890 g_string_prepend_len
1891 g_string_insert
1892 g_string_insert_c
1893 g_string_insert_unichar
1894 g_string_insert_len
1895 g_string_erase
1896 g_string_truncate
1897 g_string_set_size
1898 g_string_free
1899
1900 <SUBSECTION>
1901 g_string_up
1902 g_string_down
1903
1904 <SUBSECTION>
1905 g_string_hash
1906 g_string_equal
1907
1908 </SECTION>
1909
1910 <SECTION>
1911 <TITLE>String Chunks</TITLE>
1912 <FILE>string_chunks</FILE>
1913 GStringChunk
1914 g_string_chunk_new
1915 g_string_chunk_insert
1916 g_string_chunk_insert_const
1917 g_string_chunk_insert_len
1918 g_string_chunk_clear
1919 g_string_chunk_free
1920
1921 </SECTION>
1922
1923 <SECTION>
1924 <TITLE>Arrays</TITLE>
1925 <FILE>arrays</FILE>
1926 GArray
1927 g_array_new
1928 g_array_sized_new
1929 g_array_append_val
1930 g_array_append_vals
1931 g_array_prepend_val
1932 g_array_prepend_vals
1933 g_array_insert_val
1934 g_array_insert_vals
1935 g_array_remove_index
1936 g_array_remove_index_fast
1937 g_array_remove_range
1938 g_array_sort
1939 g_array_sort_with_data
1940 g_array_index
1941 g_array_set_size
1942 g_array_free
1943 </SECTION>
1944
1945 <SECTION>
1946 <TITLE>Pointer Arrays</TITLE>
1947 <FILE>arrays_pointer</FILE>
1948 GPtrArray
1949 g_ptr_array_new
1950 g_ptr_array_sized_new
1951 g_ptr_array_add
1952 g_ptr_array_remove
1953 g_ptr_array_remove_index
1954 g_ptr_array_remove_fast
1955 g_ptr_array_remove_index_fast
1956 g_ptr_array_remove_range
1957 g_ptr_array_sort
1958 g_ptr_array_sort_with_data
1959 g_ptr_array_set_size
1960 g_ptr_array_index
1961 g_ptr_array_free
1962 g_ptr_array_foreach
1963
1964 </SECTION>
1965
1966 <SECTION>
1967 <TITLE>Byte Arrays</TITLE>
1968 <FILE>arrays_byte</FILE>
1969 GByteArray
1970 g_byte_array_new
1971 g_byte_array_sized_new
1972 g_byte_array_append
1973 g_byte_array_prepend
1974 g_byte_array_remove_index
1975 g_byte_array_remove_index_fast
1976 g_byte_array_remove_range
1977 g_byte_array_sort
1978 g_byte_array_sort_with_data
1979 g_byte_array_set_size
1980 g_byte_array_free
1981
1982 </SECTION>
1983
1984 <SECTION>
1985 <TITLE>Balanced Binary Trees</TITLE>
1986 <FILE>trees-binary</FILE>
1987 GTree
1988 g_tree_new
1989 g_tree_new_with_data
1990 g_tree_new_full
1991 g_tree_insert
1992 g_tree_replace
1993 g_tree_nnodes
1994 g_tree_height
1995 g_tree_lookup
1996 g_tree_lookup_extended
1997 g_tree_foreach
1998 g_tree_traverse
1999 GTraverseFunc
2000 GTraverseType
2001 g_tree_search
2002 g_tree_remove
2003 g_tree_steal
2004 g_tree_destroy
2005 </SECTION>
2006
2007 <SECTION>
2008 <TITLE>N-ary Trees</TITLE>
2009 <FILE>trees-nary</FILE>
2010 GNode
2011 g_node_new
2012 g_node_copy
2013 GCopyFunc
2014 g_node_copy_deep
2015
2016 <SUBSECTION>
2017 g_node_insert
2018 g_node_insert_before
2019 g_node_insert_after
2020 g_node_append
2021 g_node_prepend
2022
2023 <SUBSECTION>
2024 g_node_insert_data
2025 g_node_insert_data_before
2026 g_node_append_data
2027 g_node_prepend_data
2028
2029 <SUBSECTION>
2030 g_node_reverse_children
2031 g_node_traverse
2032 GTraverseFlags
2033 GNodeTraverseFunc
2034 g_node_children_foreach
2035 GNodeForeachFunc
2036
2037 <SUBSECTION>
2038 g_node_get_root
2039 g_node_find
2040 g_node_find_child
2041 g_node_child_index
2042 g_node_child_position
2043 g_node_first_child
2044 g_node_last_child
2045 g_node_nth_child
2046 g_node_first_sibling
2047 g_node_next_sibling
2048 g_node_prev_sibling
2049 g_node_last_sibling
2050
2051 <SUBSECTION>
2052 G_NODE_IS_LEAF
2053 G_NODE_IS_ROOT
2054 g_node_depth
2055 g_node_n_nodes
2056 g_node_n_children
2057 g_node_is_ancestor
2058 g_node_max_height
2059
2060 <SUBSECTION>
2061 g_node_unlink
2062 g_node_destroy
2063
2064 <SUBSECTION>
2065 g_node_push_allocator
2066 g_node_pop_allocator
2067 </SECTION>
2068
2069
2070 <SECTION>
2071 <TITLE>Quarks</TITLE>
2072 <FILE>quarks</FILE>
2073 GQuark
2074 g_quark_from_string
2075 g_quark_from_static_string
2076 g_quark_to_string
2077 g_quark_try_string
2078 g_intern_string
2079 g_intern_static_string
2080 </SECTION>
2081
2082 <SECTION>
2083 <TITLE>Keyed Data Lists</TITLE>
2084 <FILE>datalist</FILE>
2085 GData
2086 g_datalist_init
2087
2088 <SUBSECTION>
2089 g_datalist_id_set_data
2090 g_datalist_id_set_data_full
2091 g_datalist_id_get_data
2092 g_datalist_id_remove_data
2093 g_datalist_id_remove_no_notify
2094
2095 <SUBSECTION>
2096 g_datalist_set_data
2097 g_datalist_set_data_full
2098 g_datalist_get_data
2099 g_datalist_remove_data
2100 g_datalist_remove_no_notify
2101
2102 <SUBSECTION>
2103 g_datalist_foreach
2104 g_datalist_clear
2105 g_datalist_set_flags
2106 g_datalist_unset_flags
2107 g_datalist_get_flags
2108 G_DATALIST_FLAGS_MASK
2109 </SECTION>
2110
2111
2112 <SECTION>
2113 <TITLE>Datasets</TITLE>
2114 <FILE>datasets</FILE>
2115 g_dataset_id_set_data
2116 g_dataset_id_set_data_full
2117 GDestroyNotify
2118 g_dataset_id_get_data
2119 g_dataset_id_remove_data
2120 g_dataset_id_remove_no_notify
2121
2122 <SUBSECTION>
2123 g_dataset_set_data
2124 g_dataset_set_data_full
2125 g_dataset_get_data
2126 g_dataset_remove_data
2127 g_dataset_remove_no_notify
2128
2129 <SUBSECTION>
2130 g_dataset_foreach
2131 GDataForeachFunc
2132 g_dataset_destroy
2133
2134 </SECTION>
2135
2136 <SECTION>
2137 <TITLE>Relations and Tuples</TITLE>
2138 <FILE>relations</FILE>
2139 GRelation
2140 g_relation_new
2141 g_relation_index
2142 g_relation_insert
2143 g_relation_exists
2144 g_relation_count
2145 g_relation_select
2146 g_relation_delete
2147 g_relation_destroy
2148
2149 <SUBSECTION>
2150 g_relation_print
2151
2152 <SUBSECTION>
2153 GTuples
2154 g_tuples_destroy
2155 g_tuples_index
2156 </SECTION>
2157
2158 <SECTION>
2159 <TITLE>Caches</TITLE>
2160 <FILE>caches</FILE>
2161 GCache
2162 g_cache_new
2163 g_cache_insert
2164 g_cache_remove
2165 g_cache_destroy
2166
2167 <SUBSECTION>
2168 g_cache_key_foreach
2169 g_cache_value_foreach
2170
2171 <SUBSECTION>
2172 GCacheDestroyFunc
2173 GCacheDupFunc
2174 GCacheNewFunc
2175 </SECTION>
2176
2177 <SECTION>
2178 <TITLE>Memory Allocators</TITLE>
2179 <FILE>allocators</FILE>
2180 GAllocator
2181 g_allocator_new
2182 g_allocator_free
2183
2184 <SUBSECTION Private>
2185 G_ALLOCATOR_LIST
2186 G_ALLOCATOR_NODE
2187 G_ALLOCATOR_SLIST
2188 </SECTION>
2189
2190 <SECTION>
2191 <TITLE>Random Numbers</TITLE>
2192 <FILE>random_numbers</FILE>
2193 GRand
2194 g_rand_new_with_seed
2195 g_rand_new_with_seed_array
2196 g_rand_new
2197 g_rand_copy
2198 g_rand_free
2199 g_rand_set_seed
2200 g_rand_set_seed_array
2201 g_rand_boolean
2202 g_rand_int
2203 g_rand_int_range
2204 g_rand_double
2205 g_rand_double_range
2206 g_random_set_seed
2207 g_random_boolean
2208 g_random_int
2209 g_random_int_range
2210 g_random_double
2211 g_random_double_range
2212 </SECTION>
2213
2214 <SECTION>
2215 <TITLE>Character Set Conversion</TITLE>
2216 <FILE>conversions</FILE>
2217 g_convert
2218 g_convert_with_fallback
2219 GIConv
2220 g_convert_with_iconv
2221 G_CONVERT_ERROR
2222 g_iconv_open
2223 g_iconv
2224 g_iconv_close
2225 g_locale_to_utf8
2226 g_filename_to_utf8
2227 g_filename_from_utf8
2228 g_filename_from_uri
2229 g_filename_to_uri
2230 g_get_filename_charsets
2231 g_filename_display_name
2232 g_filename_display_basename
2233 g_uri_list_extract_uris
2234 g_locale_from_utf8
2235 GConvertError
2236
2237 <SUBSECTION>
2238 g_get_charset
2239
2240 <SUBSECTION Private>
2241 g_convert_error_quark
2242 </SECTION>
2243
2244 <SECTION>
2245 <TITLE>Unicode Manipulation</TITLE>
2246 <FILE>unicode</FILE>
2247 gunichar
2248 gunichar2
2249
2250 <SUBSECTION>
2251 g_unichar_validate
2252 g_unichar_isalnum
2253 g_unichar_isalpha
2254 g_unichar_iscntrl
2255 g_unichar_isdigit
2256 g_unichar_isgraph
2257 g_unichar_islower
2258 g_unichar_isprint
2259 g_unichar_ispunct
2260 g_unichar_isspace
2261 g_unichar_isupper
2262 g_unichar_isxdigit
2263 g_unichar_istitle
2264 g_unichar_isdefined
2265 g_unichar_iswide
2266 g_unichar_iswide_cjk
2267 g_unichar_iszerowidth
2268 g_unichar_toupper
2269 g_unichar_tolower
2270 g_unichar_totitle
2271 g_unichar_digit_value
2272 g_unichar_xdigit_value
2273 GUnicodeType
2274 g_unichar_type
2275 GUnicodeBreakType
2276 g_unichar_break_type
2277 g_unicode_canonical_ordering
2278 g_unicode_canonical_decomposition
2279 g_unichar_get_mirror_char
2280 GUnicodeScript
2281 g_unichar_get_script
2282
2283 <SUBSECTION>
2284 g_utf8_next_char
2285 g_utf8_get_char
2286 g_utf8_get_char_validated
2287 g_utf8_offset_to_pointer
2288 g_utf8_pointer_to_offset
2289 g_utf8_prev_char
2290 g_utf8_find_next_char
2291 g_utf8_find_prev_char
2292 g_utf8_strlen
2293 g_utf8_strncpy
2294 g_utf8_strchr
2295 g_utf8_strrchr
2296 g_utf8_strreverse
2297 g_utf8_validate
2298
2299 <SUBSECTION>
2300 g_utf8_strup
2301 g_utf8_strdown
2302 g_utf8_casefold
2303 g_utf8_normalize
2304 GNormalizeMode
2305 g_utf8_collate
2306 g_utf8_collate_key
2307 g_utf8_collate_key_for_filename
2308
2309 <SUBSECTION>
2310 g_utf8_to_utf16
2311 g_utf8_to_ucs4
2312 g_utf8_to_ucs4_fast
2313 g_utf16_to_ucs4
2314 g_utf16_to_utf8
2315 g_ucs4_to_utf16
2316 g_ucs4_to_utf8
2317 g_unichar_to_utf8
2318 </SECTION>
2319
2320 <SECTION>
2321 <TITLE>I18N</TITLE>
2322 <FILE>i18n</FILE>
2323 <INCLUDE>glib.h,glib/gi18n.h</INCLUDE>
2324 _
2325 Q_
2326 N_
2327 g_strip_context
2328 <SUBSECTION>
2329 g_get_language_names
2330 </SECTION>
2331
2332 <SECTION>
2333 <TITLE>Base64 Encoding</TITLE>
2334 <FILE>base64</FILE>
2335 g_base64_encode_step
2336 g_base64_encode_close
2337 g_base64_encode
2338 g_base64_decode_step
2339 g_base64_decode
2340 </SECTION>