Check for timegm.
[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_set_poll_func
436
437 <SUBSECTION>
438 g_timeout_source_new
439 g_timeout_add
440 g_timeout_add_full
441
442 <SUBSECTION>
443 g_idle_source_new
444 g_idle_add
445 g_idle_add_full
446 g_idle_remove_by_data
447
448 <SUBSECTION>
449 GPid
450 GChildWatchFunc
451 g_child_watch_source_new
452 g_child_watch_add
453 g_child_watch_add_full
454 <SUBSECTION>
455 GPollFD
456
457 <SUBSECTION>
458 GSource
459 GSourceDummyMarshal
460 GSourceFuncs
461 GSourceCallbackFuncs
462 g_source_new
463 g_source_ref
464 g_source_unref
465 g_source_attach
466 g_source_destroy
467 g_source_set_priority
468 g_source_get_priority
469 g_source_set_can_recurse
470 g_source_get_can_recurse
471 g_source_get_id
472 g_source_get_context
473 g_source_set_callback
474 GSourceFunc
475 g_source_set_callback_indirect
476 g_source_add_poll
477 g_source_remove_poll
478 g_source_get_current_time
479 g_source_remove
480 g_source_remove_by_funcs_user_data
481 g_source_remove_by_user_data
482
483 <SUBSECTION Private>
484 GLIB_HAVE_SYS_POLL_H
485 GLIB_HAVE_ALLOCA_H
486 alloca
487 GLIB_SYSDEF_POLLERR
488 GLIB_SYSDEF_POLLHUP
489 GLIB_SYSDEF_POLLIN
490 GLIB_SYSDEF_POLLNVAL
491 GLIB_SYSDEF_POLLOUT
492 GLIB_SYSDEF_POLLPRI
493 G_WIN32_MSG_HANDLE
494 g_idle_funcs
495 g_timeout_funcs
496 g_child_watch_funcs
497 </SECTION>
498
499 <SECTION>
500 <TITLE>Threads</TITLE>
501 <FILE>threads</FILE>
502 <SUBSECTION>
503 G_THREADS_ENABLED
504 G_THREADS_IMPL_POSIX
505 G_THREADS_IMPL_NONE
506
507 <SUBSECTION>
508 G_THREAD_ERROR
509 GThreadError
510
511 <SUBSECTION>
512 GThreadFunctions
513 g_thread_init
514 g_thread_supported
515
516 <SUBSECTION>
517 GThreadFunc
518 GThreadPriority
519 GThread
520 g_thread_create
521 g_thread_create_full
522 g_thread_self
523 g_thread_join
524 g_thread_set_priority
525 g_thread_yield
526 g_thread_exit
527 g_thread_foreach
528
529 <SUBSECTION>
530 GMutex
531 g_mutex_new
532 g_mutex_lock
533 g_mutex_trylock
534 g_mutex_unlock
535 g_mutex_free
536
537 <SUBSECTION>
538 GStaticMutex
539 G_STATIC_MUTEX_INIT
540 g_static_mutex_init
541 g_static_mutex_lock
542 g_static_mutex_trylock
543 g_static_mutex_unlock
544 g_static_mutex_get_mutex
545 g_static_mutex_free
546
547 <SUBSECTION>
548 G_LOCK_DEFINE
549 G_LOCK_DEFINE_STATIC
550 G_LOCK_EXTERN
551 G_LOCK
552 G_TRYLOCK
553 G_UNLOCK
554
555 <SUBSECTION>
556 GStaticRecMutex
557 G_STATIC_REC_MUTEX_INIT
558 g_static_rec_mutex_init
559 g_static_rec_mutex_lock
560 g_static_rec_mutex_trylock
561 g_static_rec_mutex_unlock
562 g_static_rec_mutex_lock_full
563 g_static_rec_mutex_unlock_full
564 g_static_rec_mutex_free
565
566 <SUBSECTION>
567 GStaticRWLock
568 G_STATIC_RW_LOCK_INIT
569 g_static_rw_lock_init
570 g_static_rw_lock_reader_lock
571 g_static_rw_lock_reader_trylock
572 g_static_rw_lock_reader_unlock
573 g_static_rw_lock_writer_lock
574 g_static_rw_lock_writer_trylock
575 g_static_rw_lock_writer_unlock
576 g_static_rw_lock_free
577
578 <SUBSECTION>
579 GCond
580 g_cond_new
581 g_cond_signal
582 g_cond_broadcast
583 g_cond_wait
584 g_cond_timed_wait
585 g_cond_free
586
587 <SUBSECTION>
588 GPrivate
589 g_private_new
590 g_private_get
591 g_private_set
592
593 <SUBSECTION>
594 GStaticPrivate
595 G_STATIC_PRIVATE_INIT
596 g_static_private_init
597 g_static_private_get
598 g_static_private_set
599 g_static_private_free
600
601 <SUBSECTION>
602 GOnce
603 GOnceStatus
604 G_ONCE_INIT
605 g_once
606
607 <SUBSECTION Private>
608 G_THREAD_ECF
609 G_THREAD_CF
610 G_THREAD_UF
611 g_static_mutex_get_mutex_impl
612 g_static_mutex_get_mutex_impl_shortcut
613 G_MUTEX_DEBUG_MAGIC
614 g_thread_init_with_errorcheck_mutexes
615 G_LOCK_NAME
616 glib_dummy_decl
617 GSystemThread
618 g_thread_use_default_impl
619 g_threads_got_initialized
620 g_thread_functions_for_glib_use
621 g_thread_init_glib
622 g_thread_error_quark
623 g_once_impl
624 </SECTION>
625
626 <SECTION>
627 <TITLE>Thread Pools</TITLE>
628 <FILE>thread_pools</FILE>
629 GThreadPool
630 g_thread_pool_new
631 g_thread_pool_push
632 g_thread_pool_set_max_threads
633 g_thread_pool_get_max_threads
634 g_thread_pool_get_num_threads
635 g_thread_pool_unprocessed
636 g_thread_pool_free
637 g_thread_pool_set_max_unused_threads
638 g_thread_pool_get_max_unused_threads
639 g_thread_pool_get_num_unused_threads
640 g_thread_pool_stop_unused_threads
641 g_thread_pool_set_sort_function
642 g_thread_pool_set_max_idle_time
643 g_thread_pool_get_max_idle_time
644 </SECTION>
645
646 <SECTION>
647 <TITLE>Asynchronous Queues</TITLE>
648 <FILE>async_queues</FILE>
649 GAsyncQueue
650 g_async_queue_new
651 g_async_queue_ref
652 g_async_queue_unref
653 g_async_queue_push
654 g_async_queue_push_sorted
655 g_async_queue_pop
656 g_async_queue_try_pop
657 g_async_queue_timed_pop
658 g_async_queue_length
659 g_async_queue_sort
660
661 <SUBSECTION>
662 g_async_queue_lock
663 g_async_queue_unlock
664 g_async_queue_ref_unlocked
665 g_async_queue_unref_and_unlock
666 g_async_queue_push_unlocked
667 g_async_queue_push_sorted_unlocked
668 g_async_queue_pop_unlocked
669 g_async_queue_try_pop_unlocked
670 g_async_queue_timed_pop_unlocked
671 g_async_queue_length_unlocked
672 g_async_queue_sort_unlocked
673 </SECTION>
674
675 <SECTION>
676 <TITLE>Atomic Operations</TITLE>
677 <FILE>atomic_operations</FILE>g
678 g_atomic_int_get
679 g_atomic_int_set
680 g_atomic_int_add
681 g_atomic_int_exchange_and_add
682 g_atomic_int_compare_and_exchange
683 g_atomic_pointer_get
684 g_atomic_pointer_set
685 g_atomic_pointer_compare_and_exchange
686 g_atomic_int_inc
687 g_atomic_int_dec_and_test
688 </SECTION>
689
690 <SECTION>
691 <TITLE>IO Channels</TITLE>
692 <FILE>iochannels</FILE>
693 GIOChannel
694
695 <SUBSECTION>
696 g_io_channel_unix_new
697 g_io_channel_unix_get_fd
698 g_io_channel_win32_new_fd
699 g_io_channel_win32_new_socket
700 g_io_channel_win32_new_messages
701
702 <SUBSECTION>
703 g_io_channel_init
704
705 <SUBSECTION>
706 g_io_channel_new_file
707 g_io_channel_read_chars
708 g_io_channel_read_unichar
709 g_io_channel_read_line
710 g_io_channel_read_line_string
711 g_io_channel_read_to_end
712 g_io_channel_write_chars
713 g_io_channel_write_unichar
714 g_io_channel_flush
715 g_io_channel_seek_position
716 GSeekType
717 g_io_channel_shutdown
718
719 <SUBSECTION>
720 GIOStatus
721 GIOChannelError
722 G_IO_CHANNEL_ERROR
723 g_io_channel_error_from_errno
724
725 <SUBSECTION>
726 g_io_channel_ref
727 g_io_channel_unref
728
729 <SUBSECTION>
730 g_io_create_watch
731 g_io_add_watch
732 g_io_add_watch_full
733 GIOCondition
734 GIOFunc
735
736 <SUBSECTION>
737 GIOFuncs
738
739 <SUBSECTION>
740 g_io_channel_get_buffer_size
741 g_io_channel_set_buffer_size
742 g_io_channel_get_buffer_condition
743 g_io_channel_get_flags
744 g_io_channel_set_flags
745 GIOFlags
746 g_io_channel_get_line_term
747 g_io_channel_set_line_term
748 g_io_channel_get_buffered
749 g_io_channel_set_buffered
750 g_io_channel_get_encoding
751 g_io_channel_set_encoding
752 g_io_channel_get_close_on_unref
753 g_io_channel_set_close_on_unref
754
755 <SUBSECTION Private>
756 g_io_channel_win32_poll
757 g_io_channel_win32_make_pollfd
758 g_io_channel_win32_get_fd
759  
760 <SUBSECTION>
761 g_io_channel_read
762 GIOError
763 g_io_channel_write
764 g_io_channel_seek
765 g_io_channel_close
766
767 <SUBSECTION Private>
768 g_io_channel_error_quark
769 g_io_watch_funcs
770 </SECTION>
771
772 <SECTION>
773 <TITLE>Memory Allocation</TITLE>
774 <FILE>memory</FILE>
775 g_new
776 g_new0
777 g_renew
778 g_try_new
779 g_try_new0
780 g_try_renew
781
782 <SUBSECTION>
783 g_malloc
784 g_malloc0
785 g_realloc
786 g_try_malloc
787 g_try_malloc0
788 g_try_realloc
789
790 <SUBSECTION>
791 g_free
792 g_mem_gc_friendly
793
794 <SUBSECTION>
795 g_alloca
796 g_newa
797
798 <SUBSECTION>
799 g_memmove
800 g_memdup
801
802 <SUBSECTION>
803 GMemVTable
804 g_mem_set_vtable
805 g_mem_is_system_malloc
806
807 <SUBSECTION>
808 glib_mem_profiler_table
809 g_mem_profile
810 </SECTION>
811
812 <SECTION>
813 <TITLE>Warnings and Assertions</TITLE>
814 <FILE>warnings</FILE>
815 g_print
816 g_set_print_handler
817 GPrintFunc
818
819 <SUBSECTION>
820 g_printerr
821 g_set_printerr_handler
822
823 <SUBSECTION>
824 g_return_if_fail
825 g_return_val_if_fail
826 g_return_if_reached
827 g_return_val_if_reached
828
829 <SUBSECTION>
830 g_assert
831 g_assert_not_reached
832
833 <SUBSECTION>
834 g_on_error_query
835 g_on_error_stack_trace
836
837 <SUBSECTION>
838 G_BREAKPOINT
839
840 <SUBSECTION Private>
841 g_return_if_fail_warning
842 g_assert_warning
843 </SECTION>
844
845 <SECTION>
846 <TITLE>Glob-style pattern matching</TITLE>
847 <FILE>patterns</FILE>
848 GPatternSpec
849 g_pattern_spec_new
850 g_pattern_spec_free
851 g_pattern_spec_equal
852 g_pattern_match
853 g_pattern_match_string
854 g_pattern_match_simple
855 </SECTION>
856
857 <SECTION>
858 <TITLE>Message Logging</TITLE>
859 <FILE>messages</FILE>
860 G_LOG_DOMAIN
861 G_LOG_FATAL_MASK
862 G_LOG_LEVEL_USER_SHIFT
863 GLogFunc
864 GLogLevelFlags
865
866 <SUBSECTION>
867 g_log
868 g_logv
869 g_message
870 g_warning
871 g_critical
872 g_error
873 g_debug
874
875 <SUBSECTION>
876 g_log_set_handler
877 g_log_remove_handler
878 g_log_set_always_fatal
879 g_log_set_fatal_mask
880 g_log_default_handler
881 g_log_set_default_handler
882 </SECTION>
883
884 <SECTION>
885 <TITLE>Timers</TITLE>
886 <FILE>timers</FILE>
887 GTimer
888 g_timer_new
889 g_timer_start
890 g_timer_stop
891 g_timer_continue
892 g_timer_elapsed
893 g_timer_reset
894 g_timer_destroy
895 </SECTION>
896
897 <SECTION>
898 <TITLE>Spawning Processes</TITLE>
899 <FILE>spawn</FILE>
900 GSpawnError
901 G_SPAWN_ERROR
902 GSpawnFlags
903 GSpawnChildSetupFunc
904 g_spawn_async_with_pipes
905 g_spawn_async
906 g_spawn_sync
907 g_spawn_command_line_async
908 g_spawn_command_line_sync
909 g_spawn_close_pid
910 <SUBSECTION Private>
911 g_spawn_error_quark
912 </SECTION>
913
914 <SECTION>
915 <TITLE>Simple XML Subset Parser</TITLE>
916 <FILE>markup</FILE>
917 GMarkupError
918 G_MARKUP_ERROR
919 GMarkupParseFlags
920 GMarkupParseContext
921 GMarkupParser
922 g_markup_escape_text
923 g_markup_printf_escaped
924 g_markup_vprintf_escaped
925 g_markup_parse_context_end_parse
926 g_markup_parse_context_free
927 g_markup_parse_context_get_position
928 g_markup_parse_context_get_element
929 g_markup_parse_context_new
930 g_markup_parse_context_parse
931 <SUBSECTION Private>
932 g_markup_error_quark
933 </SECTION>
934
935
936 <SECTION>
937 <TITLE>Shell-related Utilities</TITLE>
938 <FILE>shell</FILE>
939 GShellError
940 G_SHELL_ERROR
941 g_shell_parse_argv
942 g_shell_quote
943 g_shell_unquote
944 <SUBSECTION Private>
945 g_shell_error_quark
946 </SECTION>
947
948
949 <SECTION>
950 <TITLE>Commandline option parser</TITLE>
951 <FILE>option</FILE>
952 GOptionError
953 G_OPTION_ERROR
954 GOptionArgFunc
955 GOptionContext
956 g_option_context_new
957 g_option_context_free
958 g_option_context_parse
959 g_option_context_set_help_enabled
960 g_option_context_get_help_enabled
961 g_option_context_set_ignore_unknown_options
962 g_option_context_get_ignore_unknown_options
963 GOptionArg
964 GOptionFlags
965 G_OPTION_REMAINING
966 GOptionEntry
967 g_option_context_add_main_entries
968 GOptionGroup
969 g_option_context_add_group
970 g_option_context_set_main_group
971 g_option_context_get_main_group
972 g_option_group_new
973 g_option_group_free
974 g_option_group_add_entries
975 GOptionParseFunc
976 g_option_group_set_parse_hooks
977 GOptionErrorFunc
978 g_option_group_set_error_hook
979 GTranslateFunc
980 g_option_group_set_translate_func
981 g_option_group_set_translation_domain
982 <SUBSECTION Private>
983 g_option_error_quark
984 </SECTION>
985
986
987 <SECTION>
988 <TITLE>File Utilities</TITLE>
989 <FILE>fileutils</FILE>
990 <INCLUDE>glib.h,glib/gstdio.h</INCLUDE>
991 GFileError
992 G_FILE_ERROR
993 GFileTest
994 g_file_error_from_errno
995 g_file_get_contents
996 g_file_set_contents
997 g_file_test
998 g_mkstemp
999 g_file_open_tmp
1000 g_file_read_link
1001 g_mkdir_with_parents
1002
1003 <SUBSECTION>
1004 GDir
1005 g_dir_open
1006 g_dir_read_name
1007 g_dir_rewind
1008 g_dir_close
1009
1010 <SUBSECTION>
1011 GMappedFile
1012 g_mapped_file_new
1013 g_mapped_file_free
1014 g_mapped_file_get_length
1015 g_mapped_file_get_contents
1016
1017 <SUBSECTION>
1018 g_open
1019 g_rename
1020 g_mkdir
1021 g_stat
1022 g_lstat
1023 g_unlink
1024 g_remove
1025 g_rmdir
1026 g_fopen
1027 g_freopen
1028 g_chmod
1029 g_access
1030 g_creat
1031 g_chdir
1032
1033 <SUBSECTION Private>
1034 g_file_error_quark
1035 </SECTION>
1036
1037
1038 <SECTION>
1039 <TITLE>String Utility Functions</TITLE>
1040 <FILE>string_utils</FILE>
1041 <INCLUDE>glib.h,glib/gprintf.h</INCLUDE>
1042 g_strdup
1043 g_strndup
1044 g_strdupv
1045 g_strnfill
1046 g_stpcpy
1047 g_strstr_len
1048 g_strrstr
1049 g_strrstr_len
1050 g_str_has_prefix
1051 g_str_has_suffix
1052
1053 <SUBSECTION>
1054 g_strlcpy
1055 g_strlcat
1056
1057 <SUBSECTION>
1058 g_strdup_printf
1059 g_strdup_vprintf
1060 g_printf
1061 g_vprintf
1062 g_fprintf
1063 g_vfprintf
1064 g_sprintf
1065 g_vsprintf
1066 g_snprintf
1067 g_vsnprintf
1068 g_vasprintf
1069 g_printf_string_upper_bound
1070
1071 <SUBSECTION>
1072 g_ascii_isalnum
1073 g_ascii_isalpha
1074 g_ascii_iscntrl
1075 g_ascii_isdigit
1076 g_ascii_isgraph
1077 g_ascii_islower
1078 g_ascii_isprint
1079 g_ascii_ispunct
1080 g_ascii_isspace
1081 g_ascii_isupper
1082 g_ascii_isxdigit
1083
1084 <SUBSECTION>
1085 g_ascii_digit_value
1086 g_ascii_xdigit_value
1087
1088 <SUBSECTION>
1089 g_ascii_strcasecmp
1090 g_ascii_strncasecmp
1091
1092 <SUBSECTION>
1093 g_ascii_strup
1094 g_ascii_strdown
1095
1096 <SUBSECTION>
1097 g_ascii_tolower
1098 g_ascii_toupper
1099
1100 <SUBSECTION>
1101 g_string_ascii_up
1102 g_string_ascii_down
1103
1104 <SUBSECTION>
1105 g_strup
1106 g_strdown
1107
1108 <SUBSECTION>
1109 g_strcasecmp
1110 g_strncasecmp
1111
1112 <SUBSECTION>
1113 g_strreverse
1114
1115 <SUBSECTION>
1116 g_ascii_strtoull
1117 G_ASCII_DTOSTR_BUF_SIZE
1118 g_ascii_strtod
1119 g_ascii_dtostr
1120 g_ascii_formatd
1121 g_strtod
1122
1123 <SUBSECTION>
1124 g_strchug
1125 g_strchomp
1126 g_strstrip
1127
1128 <SUBSECTION>
1129 g_strdelimit
1130 G_STR_DELIMITERS
1131 g_strescape
1132 g_strcompress
1133 g_strcanon
1134 g_strsplit
1135 g_strsplit_set
1136 g_strfreev
1137 g_strconcat
1138 g_strjoin
1139 g_strjoinv
1140 g_strv_length
1141
1142 <SUBSECTION>
1143 g_strerror
1144 g_strsignal
1145
1146 <SUBSECTION Private>
1147 GAsciiType
1148 </SECTION>
1149
1150 <SECTION>
1151 <TITLE>Date and Time Functions</TITLE>
1152 <FILE>date</FILE>
1153 G_USEC_PER_SEC
1154 GTimeVal
1155 g_get_current_time
1156 g_usleep
1157 g_time_val_add
1158 g_time_val_from_iso8601
1159 g_time_val_to_iso8601
1160
1161 <SUBSECTION>
1162 GDate
1163 GTime
1164 GDateDMY
1165 GDateDay
1166 GDateMonth
1167 GDateYear
1168 GDateWeekday
1169
1170 <SUBSECTION>
1171 G_DATE_BAD_DAY
1172 G_DATE_BAD_JULIAN
1173 G_DATE_BAD_YEAR
1174
1175 <SUBSECTION>
1176 g_date_new
1177 g_date_new_dmy
1178 g_date_new_julian
1179 g_date_clear
1180 g_date_free
1181
1182 <SUBSECTION>
1183 g_date_set_day
1184 g_date_set_month
1185 g_date_set_year
1186 g_date_set_dmy
1187 g_date_set_julian
1188 g_date_set_time
1189 g_date_set_time_t
1190 g_date_set_time_val
1191 g_date_set_parse
1192
1193 <SUBSECTION>
1194 g_date_add_days
1195 g_date_subtract_days
1196 g_date_add_months
1197 g_date_subtract_months
1198 g_date_add_years
1199 g_date_subtract_years
1200 g_date_days_between
1201 g_date_compare
1202 g_date_clamp
1203 g_date_order
1204
1205 <SUBSECTION>
1206 g_date_get_day
1207 g_date_get_month
1208 g_date_get_year
1209 g_date_get_julian
1210 g_date_get_weekday
1211 g_date_get_day_of_year
1212
1213 <SUBSECTION>
1214 g_date_get_days_in_month
1215 g_date_is_first_of_month
1216 g_date_is_last_of_month
1217 g_date_is_leap_year
1218 g_date_get_monday_week_of_year
1219 g_date_get_monday_weeks_in_year
1220 g_date_get_sunday_week_of_year
1221 g_date_get_sunday_weeks_in_year
1222 g_date_get_iso8601_week_of_year
1223
1224 <SUBSECTION>
1225 g_date_strftime
1226 g_date_to_struct_tm
1227
1228 <SUBSECTION>
1229 g_date_valid
1230 g_date_valid_day
1231 g_date_valid_month
1232 g_date_valid_year
1233 g_date_valid_dmy
1234 g_date_valid_julian
1235 g_date_valid_weekday
1236
1237 <SUBSECTION Private>
1238 g_date_weekday
1239 g_date_month
1240 g_date_year
1241 g_date_day
1242 g_date_julian
1243 g_date_day_of_year
1244 g_date_monday_week_of_year
1245 g_date_sunday_week_of_year
1246 g_date_days_in_month
1247 g_date_monday_weeks_in_year
1248 g_date_sunday_weeks_in_year
1249 tm
1250 </SECTION>
1251
1252 <SECTION>
1253 <TITLE>Hook Functions</TITLE>
1254 <FILE>hooks</FILE>
1255 GHookList
1256 GHookFinalizeFunc
1257 GHook
1258 GHookFunc
1259 GHookCheckFunc
1260
1261 <SUBSECTION>
1262 g_hook_list_init
1263 g_hook_list_invoke
1264 g_hook_list_invoke_check
1265 g_hook_list_marshal
1266 GHookMarshaller
1267 g_hook_list_marshal_check
1268 GHookCheckMarshaller
1269 g_hook_list_clear
1270
1271 <SUBSECTION>
1272 g_hook_alloc
1273 g_hook_append
1274 g_hook_prepend
1275 g_hook_insert_before
1276 g_hook_insert_sorted
1277 GHookCompareFunc
1278 g_hook_compare_ids
1279
1280 <SUBSECTION>
1281 g_hook_get
1282 g_hook_find
1283 GHookFindFunc
1284 g_hook_find_data
1285 g_hook_find_func
1286 g_hook_find_func_data
1287
1288 <SUBSECTION>
1289 g_hook_first_valid
1290 g_hook_next_valid
1291
1292 GHookFlagMask
1293 G_HOOK_FLAGS
1294 G_HOOK_FLAG_USER_SHIFT
1295
1296 <SUBSECTION>
1297 G_HOOK
1298 G_HOOK_IS_VALID
1299 G_HOOK_ACTIVE
1300 G_HOOK_IN_CALL
1301 G_HOOK_IS_UNLINKED
1302
1303 <SUBSECTION>
1304 g_hook_ref
1305 g_hook_unref
1306
1307 g_hook_free
1308 g_hook_destroy
1309 g_hook_destroy_link
1310 </SECTION>
1311
1312 <SECTION>
1313 <TITLE>Miscellaneous Utility Functions</TITLE>
1314 <FILE>misc_utils</FILE>
1315 g_get_application_name
1316 g_set_application_name
1317 g_get_prgname
1318 g_set_prgname
1319 g_getenv
1320 g_setenv
1321 g_unsetenv
1322 g_listenv
1323 g_get_user_name
1324 g_get_real_name
1325 g_get_user_cache_dir
1326 g_get_user_data_dir
1327 g_get_user_config_dir
1328 g_get_system_data_dirs
1329 g_get_system_config_dirs
1330
1331 <SUBSECTION>
1332 g_get_host_name
1333 g_get_home_dir
1334 g_get_tmp_dir
1335 g_get_current_dir
1336 g_basename
1337 g_dirname
1338 g_path_is_absolute
1339 g_path_skip_root
1340 g_path_get_basename
1341 g_path_get_dirname
1342 g_build_filename
1343 g_build_filenamev
1344 g_build_path
1345 g_build_pathv
1346
1347 <SUBSECTION>
1348 g_find_program_in_path
1349
1350 <SUBSECTION>
1351 g_bit_nth_lsf
1352 g_bit_nth_msf
1353 g_bit_storage
1354
1355 <SUBSECTION>
1356 g_spaced_primes_closest
1357
1358 <SUBSECTION>
1359 g_atexit
1360
1361 <SUBSECTION>
1362 g_parse_debug_string
1363 GDebugKey
1364
1365 <SUBSECTION>
1366 GVoidFunc
1367 GFreeFunc
1368
1369 <SUBSECTION>
1370 g_qsort_with_data
1371
1372 <SUBSECTION>
1373 g_nullify_pointer
1374
1375 <SUBSECTION Private>
1376 G_NATIVE_ATEXIT
1377 g_ATEXIT
1378 g_win32_get_system_data_dirs_for_module
1379 ATEXIT
1380
1381 </SECTION>
1382
1383 <SECTION>
1384 <TITLE>Lexical Scanner</TITLE>
1385 <FILE>scanner</FILE>
1386 GScanner
1387 g_scanner_new
1388 GScannerConfig
1389
1390 <SUBSECTION>
1391 g_scanner_input_file
1392 g_scanner_sync_file_offset
1393 g_scanner_input_text
1394 g_scanner_peek_next_token
1395 g_scanner_get_next_token
1396
1397 <SUBSECTION>
1398 g_scanner_cur_line
1399 g_scanner_cur_position
1400 g_scanner_cur_token
1401 g_scanner_cur_value
1402 g_scanner_eof
1403
1404 <SUBSECTION>
1405 g_scanner_set_scope
1406 g_scanner_scope_add_symbol
1407 g_scanner_scope_foreach_symbol
1408 g_scanner_scope_lookup_symbol
1409 g_scanner_scope_remove_symbol
1410
1411 <SUBSECTION>
1412 g_scanner_freeze_symbol_table
1413 g_scanner_thaw_symbol_table
1414 g_scanner_lookup_symbol
1415
1416 <SUBSECTION>
1417 g_scanner_warn
1418 g_scanner_error
1419 g_scanner_unexp_token
1420 GScannerMsgFunc
1421
1422 <SUBSECTION>
1423 g_scanner_destroy
1424
1425 <SUBSECTION>
1426 GTokenType
1427 GTokenValue
1428 GErrorType
1429 G_CSET_a_2_z
1430 G_CSET_A_2_Z
1431 G_CSET_DIGITS
1432 G_CSET_LATINC
1433 G_CSET_LATINS
1434
1435 <SUBSECTION>
1436 g_scanner_add_symbol
1437 g_scanner_remove_symbol
1438 g_scanner_foreach_symbol
1439 </SECTION>
1440
1441 <SECTION>
1442 <TITLE>Key-value file parser</TITLE>
1443 <FILE>keyfile</FILE>
1444 GKeyFile
1445 G_KEY_FILE_ERROR
1446 GKeyFileError
1447 GKeyFileFlags
1448 g_key_file_new
1449 g_key_file_free
1450 g_key_file_set_list_separator
1451 g_key_file_load_from_file
1452 g_key_file_load_from_data
1453 g_key_file_load_from_data_dirs
1454 g_key_file_to_data
1455 g_key_file_get_start_group
1456 g_key_file_get_groups
1457 g_key_file_get_keys
1458 g_key_file_has_group
1459 g_key_file_has_key
1460
1461 <SUBSECTION>
1462 g_key_file_get_value
1463 g_key_file_get_string
1464 g_key_file_get_locale_string
1465 g_key_file_get_boolean
1466 g_key_file_get_integer
1467 g_key_file_get_string_list
1468 g_key_file_get_locale_string_list
1469 g_key_file_get_boolean_list
1470 g_key_file_get_integer_list
1471 g_key_file_get_comment
1472
1473 <SUBSECTION>
1474 g_key_file_set_value
1475 g_key_file_set_string
1476 g_key_file_set_locale_string
1477 g_key_file_set_boolean
1478 g_key_file_set_integer
1479 g_key_file_set_string_list
1480 g_key_file_set_locale_string_list
1481 g_key_file_set_boolean_list
1482 g_key_file_set_integer_list
1483 g_key_file_set_comment
1484 g_key_file_remove_group
1485 g_key_file_remove_key
1486 g_key_file_remove_comment
1487
1488 <SUBSECTION Private>
1489 g_key_file_error_quark
1490 </SECTION>
1491
1492 <SECTION>
1493 <TITLE>Dynamic Loading of Modules</TITLE>
1494 <FILE>modules</FILE>
1495 <INCLUDE>gmodule.h</INCLUDE>
1496 GModule
1497 g_module_supported
1498 g_module_build_path
1499 g_module_open
1500 GModuleFlags
1501 g_module_symbol
1502 g_module_name
1503 g_module_make_resident
1504 g_module_close
1505 g_module_error
1506 <SUBSECTION>
1507 GModuleCheckInit
1508 GModuleUnload
1509 G_MODULE_SUFFIX
1510 G_MODULE_EXPORT
1511 G_MODULE_IMPORT
1512 </SECTION>
1513
1514 <SECTION>
1515 <TITLE>Automatic String Completion</TITLE>
1516 <FILE>completion</FILE>
1517 GCompletion
1518 g_completion_new
1519 GCompletionFunc
1520 g_completion_add_items
1521 g_completion_remove_items
1522 g_completion_clear_items
1523 g_completion_complete
1524 g_completion_complete_utf8
1525 g_completion_set_compare
1526 GCompletionStrncmpFunc
1527 g_completion_free
1528 </SECTION>
1529
1530 <SECTION>
1531 <TITLE>Windows Compatibility Functions</TITLE>
1532 <FILE>windows</FILE>
1533 MAXPATHLEN
1534 pipe
1535
1536 g_win32_error_message
1537 g_win32_getlocale
1538 g_win32_get_package_installation_directory
1539 g_win32_get_package_installation_subdirectory
1540 g_win32_get_windows_version
1541 g_win32_locale_filename_from_utf8
1542 G_WIN32_DLLMAIN_FOR_DLL_NAME
1543 G_WIN32_HAVE_WIDECHAR_API
1544 G_WIN32_IS_NT_BASED
1545
1546 <SUBSECTION Private>
1547 g_win32_ftruncate
1548
1549 </SECTION>
1550
1551 # Data Structures
1552
1553 <SECTION>
1554 <TITLE>Memory Chunks</TITLE>
1555 <FILE>memory_chunks</FILE>
1556 GMemChunk
1557 G_ALLOC_AND_FREE
1558 G_ALLOC_ONLY
1559
1560 <SUBSECTION>
1561 g_mem_chunk_new
1562 g_mem_chunk_alloc
1563 g_mem_chunk_alloc0
1564 g_mem_chunk_free
1565 g_mem_chunk_destroy
1566
1567 <SUBSECTION>
1568 g_mem_chunk_create
1569 g_chunk_new
1570 g_chunk_new0
1571 g_chunk_free
1572
1573 <SUBSECTION>
1574 g_mem_chunk_reset
1575 g_mem_chunk_clean
1576 g_blow_chunks
1577
1578 <SUBSECTION>
1579 g_mem_chunk_info
1580 g_mem_chunk_print
1581
1582 </SECTION>
1583
1584 <SECTION>
1585 <TITLE>Memory Slices</TITLE>
1586 <FILE>memory_slices</FILE>
1587 g_slice_alloc
1588 g_slice_alloc0
1589 g_slice_free1
1590 g_slice_free_chain_with_offset
1591
1592 <SUBSECTION>
1593 g_slice_new
1594 g_slice_new0
1595 g_slice_free
1596 g_slice_free_chain
1597
1598 <SUBSECTION Private>
1599 GSliceConfig
1600 g_slice_set_config
1601 g_slice_get_config
1602 g_slice_get_config_state
1603 </SECTION>
1604
1605 <SECTION>
1606 <TITLE>Doubly-Linked Lists</TITLE>
1607 <FILE>linked_lists_double</FILE>
1608 GList
1609
1610 <SUBSECTION>
1611 g_list_append
1612 g_list_prepend
1613 g_list_insert
1614 g_list_insert_before
1615 g_list_insert_sorted
1616 g_list_remove
1617 g_list_remove_link
1618 g_list_delete_link
1619 g_list_remove_all
1620 g_list_free
1621
1622 <SUBSECTION>
1623 g_list_alloc
1624 g_list_free_1
1625 g_list_free1
1626
1627 <SUBSECTION>
1628 g_list_length
1629 g_list_copy
1630 g_list_reverse
1631 g_list_sort
1632 GCompareFunc
1633 g_list_insert_sorted_with_data
1634 g_list_sort_with_data
1635 GCompareDataFunc
1636 g_list_concat
1637 g_list_foreach
1638 GFunc
1639
1640 <SUBSECTION>
1641 g_list_first
1642 g_list_last
1643 g_list_previous
1644 g_list_next
1645 g_list_nth
1646 g_list_nth_data
1647 g_list_nth_prev
1648
1649 <SUBSECTION>
1650 g_list_find
1651 g_list_find_custom
1652 g_list_position
1653 g_list_index
1654
1655 <SUBSECTION>
1656 g_list_push_allocator
1657 g_list_pop_allocator
1658 </SECTION>
1659
1660 <SECTION>
1661 <TITLE>Singly-Linked Lists</TITLE>
1662 <FILE>linked_lists_single</FILE>
1663 GSList
1664
1665 <SUBSECTION>
1666 g_slist_alloc
1667 g_slist_append
1668 g_slist_prepend
1669 g_slist_insert
1670 g_slist_insert_before
1671 g_slist_insert_sorted
1672 g_slist_remove
1673 g_slist_remove_link
1674 g_slist_delete_link
1675 g_slist_remove_all
1676 g_slist_free
1677 g_slist_free_1
1678 g_slist_free1
1679
1680 <SUBSECTION>
1681 g_slist_length
1682 g_slist_copy
1683 g_slist_reverse
1684 g_slist_insert_sorted_with_data
1685 g_slist_sort
1686 g_slist_sort_with_data
1687 g_slist_concat
1688 g_slist_foreach
1689
1690 <SUBSECTION>
1691 g_slist_last
1692 g_slist_next
1693 g_slist_nth
1694 g_slist_nth_data
1695
1696 <SUBSECTION>
1697 g_slist_find
1698 g_slist_find_custom
1699 g_slist_position
1700 g_slist_index
1701
1702 <SUBSECTION>
1703 g_slist_push_allocator
1704 g_slist_pop_allocator
1705 </SECTION>
1706
1707 <SECTION>
1708 <TITLE>Double-ended Queues</TITLE>
1709 <FILE>queue</FILE>
1710
1711 GQueue
1712 g_queue_new
1713 g_queue_free
1714 g_queue_is_empty
1715 g_queue_get_length
1716 g_queue_reverse
1717 g_queue_copy
1718 g_queue_foreach
1719 g_queue_find
1720 g_queue_find_custom
1721 g_queue_sort
1722 g_queue_push_head
1723 g_queue_push_tail
1724 g_queue_push_nth
1725 g_queue_pop_head
1726 g_queue_pop_tail
1727 g_queue_pop_nth
1728 g_queue_peek_head
1729 g_queue_peek_tail
1730 g_queue_peek_nth
1731 g_queue_index
1732 g_queue_remove
1733 g_queue_remove_all
1734 g_queue_insert_before
1735 g_queue_insert_after
1736 g_queue_insert_sorted
1737 g_queue_push_head_link
1738 g_queue_push_tail_link
1739 g_queue_push_nth_link
1740 g_queue_pop_head_link
1741 g_queue_pop_tail_link
1742 g_queue_pop_nth_link
1743 g_queue_peek_head_link
1744 g_queue_peek_tail_link
1745 g_queue_peek_nth_link
1746 g_queue_link_index
1747 g_queue_unlink
1748 g_queue_delete_link
1749 </SECTION>
1750
1751 <SECTION>
1752 <TITLE>Trash Stacks</TITLE>
1753 <FILE>trash_stack</FILE>
1754 GTrashStack
1755
1756 g_trash_stack_push
1757 g_trash_stack_pop
1758 g_trash_stack_peek
1759 g_trash_stack_height
1760 </SECTION>
1761
1762 <SECTION>
1763 <TITLE>Hash Tables</TITLE>
1764 <FILE>hash_tables</FILE>
1765 GHashTable
1766 g_hash_table_new
1767 g_hash_table_new_full
1768 GHashFunc
1769 GEqualFunc
1770 g_hash_table_insert
1771 g_hash_table_replace
1772 g_hash_table_size
1773 g_hash_table_lookup
1774 g_hash_table_lookup_extended
1775 g_hash_table_foreach
1776 g_hash_table_find
1777 GHFunc
1778 g_hash_table_remove
1779 g_hash_table_steal
1780 g_hash_table_foreach_remove
1781 g_hash_table_foreach_steal
1782 GHRFunc
1783 g_hash_table_freeze
1784 g_hash_table_thaw
1785 g_hash_table_destroy
1786 g_hash_table_ref
1787 g_hash_table_unref
1788
1789 <SUBSECTION>
1790 g_direct_equal
1791 g_direct_hash
1792 g_int_equal
1793 g_int_hash
1794 g_str_equal
1795 g_str_hash
1796
1797 </SECTION>
1798
1799 <SECTION>
1800 <TITLE>Strings</TITLE>
1801 <FILE>strings</FILE>
1802 GString
1803 g_string_new
1804 g_string_new_len
1805 g_string_sized_new
1806 g_string_assign
1807 g_string_sprintf
1808 g_string_sprintfa
1809 g_string_printf
1810 g_string_append_printf
1811 g_string_append
1812 g_string_append_c
1813 g_string_append_unichar
1814 g_string_append_len
1815 g_string_prepend
1816 g_string_prepend_c
1817 g_string_prepend_unichar
1818 g_string_prepend_len
1819 g_string_insert
1820 g_string_insert_c
1821 g_string_insert_unichar
1822 g_string_insert_len
1823 g_string_erase
1824 g_string_truncate
1825 g_string_set_size
1826 g_string_free
1827
1828 <SUBSECTION>
1829 g_string_up
1830 g_string_down
1831
1832 <SUBSECTION>
1833 g_string_hash
1834 g_string_equal
1835
1836 </SECTION>
1837
1838 <SECTION>
1839 <TITLE>String Chunks</TITLE>
1840 <FILE>string_chunks</FILE>
1841 GStringChunk
1842 g_string_chunk_new
1843 g_string_chunk_insert
1844 g_string_chunk_insert_const
1845 g_string_chunk_insert_len
1846 g_string_chunk_free
1847
1848 </SECTION>
1849
1850 <SECTION>
1851 <TITLE>Arrays</TITLE>
1852 <FILE>arrays</FILE>
1853 GArray
1854 g_array_new
1855 g_array_sized_new
1856 g_array_append_val
1857 g_array_append_vals
1858 g_array_prepend_val
1859 g_array_prepend_vals
1860 g_array_insert_val
1861 g_array_insert_vals
1862 g_array_remove_index
1863 g_array_remove_index_fast
1864 g_array_remove_range
1865 g_array_sort
1866 g_array_sort_with_data
1867 g_array_index
1868 g_array_set_size
1869 g_array_free
1870 </SECTION>
1871
1872 <SECTION>
1873 <TITLE>Pointer Arrays</TITLE>
1874 <FILE>arrays_pointer</FILE>
1875 GPtrArray
1876 g_ptr_array_new
1877 g_ptr_array_sized_new
1878 g_ptr_array_add
1879 g_ptr_array_remove
1880 g_ptr_array_remove_index
1881 g_ptr_array_remove_fast
1882 g_ptr_array_remove_index_fast
1883 g_ptr_array_remove_range
1884 g_ptr_array_sort
1885 g_ptr_array_sort_with_data
1886 g_ptr_array_set_size
1887 g_ptr_array_index
1888 g_ptr_array_free
1889 g_ptr_array_foreach
1890
1891 </SECTION>
1892
1893 <SECTION>
1894 <TITLE>Byte Arrays</TITLE>
1895 <FILE>arrays_byte</FILE>
1896 GByteArray
1897 g_byte_array_new
1898 g_byte_array_sized_new
1899 g_byte_array_append
1900 g_byte_array_prepend
1901 g_byte_array_remove_index
1902 g_byte_array_remove_index_fast
1903 g_byte_array_remove_range
1904 g_byte_array_sort
1905 g_byte_array_sort_with_data
1906 g_byte_array_set_size
1907 g_byte_array_free
1908
1909 </SECTION>
1910
1911 <SECTION>
1912 <TITLE>Balanced Binary Trees</TITLE>
1913 <FILE>trees-binary</FILE>
1914 GTree
1915 g_tree_new
1916 g_tree_new_with_data
1917 g_tree_new_full
1918 g_tree_insert
1919 g_tree_replace
1920 g_tree_nnodes
1921 g_tree_height
1922 g_tree_lookup
1923 g_tree_lookup_extended
1924 g_tree_foreach
1925 g_tree_traverse
1926 GTraverseFunc
1927 GTraverseType
1928 g_tree_search
1929 g_tree_remove
1930 g_tree_steal
1931 g_tree_destroy
1932 </SECTION>
1933
1934 <SECTION>
1935 <TITLE>N-ary Trees</TITLE>
1936 <FILE>trees-nary</FILE>
1937 GNode
1938 g_node_new
1939 g_node_copy
1940 GCopyFunc
1941 g_node_copy_deep
1942
1943 <SUBSECTION>
1944 g_node_insert
1945 g_node_insert_before
1946 g_node_insert_after
1947 g_node_append
1948 g_node_prepend
1949
1950 <SUBSECTION>
1951 g_node_insert_data
1952 g_node_insert_data_before
1953 g_node_append_data
1954 g_node_prepend_data
1955
1956 <SUBSECTION>
1957 g_node_reverse_children
1958 g_node_traverse
1959 GTraverseFlags
1960 GNodeTraverseFunc
1961 g_node_children_foreach
1962 GNodeForeachFunc
1963
1964 <SUBSECTION>
1965 g_node_get_root
1966 g_node_find
1967 g_node_find_child
1968 g_node_child_index
1969 g_node_child_position
1970 g_node_first_child
1971 g_node_last_child
1972 g_node_nth_child
1973 g_node_first_sibling
1974 g_node_next_sibling
1975 g_node_prev_sibling
1976 g_node_last_sibling
1977
1978 <SUBSECTION>
1979 G_NODE_IS_LEAF
1980 G_NODE_IS_ROOT
1981 g_node_depth
1982 g_node_n_nodes
1983 g_node_n_children
1984 g_node_is_ancestor
1985 g_node_max_height
1986
1987 <SUBSECTION>
1988 g_node_unlink
1989 g_node_destroy
1990
1991 <SUBSECTION>
1992 g_node_push_allocator
1993 g_node_pop_allocator
1994 </SECTION>
1995
1996
1997 <SECTION>
1998 <TITLE>Quarks</TITLE>
1999 <FILE>quarks</FILE>
2000 GQuark
2001 g_quark_from_string
2002 g_quark_from_static_string
2003 g_quark_to_string
2004 g_quark_try_string
2005 g_intern_string
2006 g_intern_static_string
2007 </SECTION>
2008
2009 <SECTION>
2010 <TITLE>Keyed Data Lists</TITLE>
2011 <FILE>datalist</FILE>
2012 GData
2013 g_datalist_init
2014
2015 <SUBSECTION>
2016 g_datalist_id_set_data
2017 g_datalist_id_set_data_full
2018 g_datalist_id_get_data
2019 g_datalist_id_remove_data
2020 g_datalist_id_remove_no_notify
2021
2022 <SUBSECTION>
2023 g_datalist_set_data
2024 g_datalist_set_data_full
2025 g_datalist_get_data
2026 g_datalist_remove_data
2027 g_datalist_remove_no_notify
2028
2029 <SUBSECTION>
2030 g_datalist_foreach
2031 g_datalist_clear
2032 g_datalist_set_flags
2033 g_datalist_unset_flags
2034 g_datalist_get_flags
2035 G_DATALIST_FLAGS_MASK
2036 </SECTION>
2037
2038
2039 <SECTION>
2040 <TITLE>Datasets</TITLE>
2041 <FILE>datasets</FILE>
2042 g_dataset_id_set_data
2043 g_dataset_id_set_data_full
2044 GDestroyNotify
2045 g_dataset_id_get_data
2046 g_dataset_id_remove_data
2047 g_dataset_id_remove_no_notify
2048
2049 <SUBSECTION>
2050 g_dataset_set_data
2051 g_dataset_set_data_full
2052 g_dataset_get_data
2053 g_dataset_remove_data
2054 g_dataset_remove_no_notify
2055
2056 <SUBSECTION>
2057 g_dataset_foreach
2058 GDataForeachFunc
2059 g_dataset_destroy
2060
2061 </SECTION>
2062
2063 <SECTION>
2064 <TITLE>Relations and Tuples</TITLE>
2065 <FILE>relations</FILE>
2066 GRelation
2067 g_relation_new
2068 g_relation_index
2069 g_relation_insert
2070 g_relation_exists
2071 g_relation_count
2072 g_relation_select
2073 g_relation_delete
2074 g_relation_destroy
2075
2076 <SUBSECTION>
2077 g_relation_print
2078
2079 <SUBSECTION>
2080 GTuples
2081 g_tuples_destroy
2082 g_tuples_index
2083 </SECTION>
2084
2085 <SECTION>
2086 <TITLE>Caches</TITLE>
2087 <FILE>caches</FILE>
2088 GCache
2089 g_cache_new
2090 g_cache_insert
2091 g_cache_remove
2092 g_cache_destroy
2093
2094 <SUBSECTION>
2095 g_cache_key_foreach
2096 g_cache_value_foreach
2097
2098 <SUBSECTION>
2099 GCacheDestroyFunc
2100 GCacheDupFunc
2101 GCacheNewFunc
2102 </SECTION>
2103
2104 <SECTION>
2105 <TITLE>Memory Allocators</TITLE>
2106 <FILE>allocators</FILE>
2107 GAllocator
2108 g_allocator_new
2109 g_allocator_free
2110
2111 <SUBSECTION Private>
2112 G_ALLOCATOR_LIST
2113 G_ALLOCATOR_NODE
2114 G_ALLOCATOR_SLIST
2115 </SECTION>
2116
2117 <SECTION>
2118 <TITLE>Random Numbers</TITLE>
2119 <FILE>random_numbers</FILE>
2120 GRand
2121 g_rand_new_with_seed
2122 g_rand_new_with_seed_array
2123 g_rand_new
2124 g_rand_copy
2125 g_rand_free
2126 g_rand_set_seed
2127 g_rand_set_seed_array
2128 g_rand_boolean
2129 g_rand_int
2130 g_rand_int_range
2131 g_rand_double
2132 g_rand_double_range
2133 g_random_set_seed
2134 g_random_boolean
2135 g_random_int
2136 g_random_int_range
2137 g_random_double
2138 g_random_double_range
2139 </SECTION>
2140
2141 <SECTION>
2142 <TITLE>Character Set Conversion</TITLE>
2143 <FILE>conversions</FILE>
2144 g_convert
2145 g_convert_with_fallback
2146 GIConv
2147 g_convert_with_iconv
2148 G_CONVERT_ERROR
2149 g_iconv_open
2150 g_iconv
2151 g_iconv_close
2152 g_locale_to_utf8
2153 g_filename_to_utf8
2154 g_filename_from_utf8
2155 g_filename_from_uri
2156 g_filename_to_uri
2157 g_get_filename_charsets
2158 g_filename_display_name
2159 g_filename_display_basename
2160 g_uri_list_extract_uris
2161 g_locale_from_utf8
2162 GConvertError
2163
2164 <SUBSECTION>
2165 g_get_charset
2166
2167 <SUBSECTION Private>
2168 g_convert_error_quark
2169 </SECTION>
2170
2171 <SECTION>
2172 <TITLE>Unicode Manipulation</TITLE>
2173 <FILE>unicode</FILE>
2174 gunichar
2175 gunichar2
2176
2177 <SUBSECTION>
2178 g_unichar_validate
2179 g_unichar_isalnum
2180 g_unichar_isalpha
2181 g_unichar_iscntrl
2182 g_unichar_isdigit
2183 g_unichar_isgraph
2184 g_unichar_islower
2185 g_unichar_isprint
2186 g_unichar_ispunct
2187 g_unichar_isspace
2188 g_unichar_isupper
2189 g_unichar_isxdigit
2190 g_unichar_istitle
2191 g_unichar_isdefined
2192 g_unichar_iswide
2193 g_unichar_toupper
2194 g_unichar_tolower
2195 g_unichar_totitle
2196 g_unichar_digit_value
2197 g_unichar_xdigit_value
2198 GUnicodeType
2199 g_unichar_type
2200 GUnicodeBreakType
2201 g_unichar_break_type
2202 g_unicode_canonical_ordering
2203 g_unicode_canonical_decomposition
2204 g_unichar_get_mirror_char
2205
2206 <SUBSECTION>
2207 g_utf8_next_char
2208 g_utf8_get_char
2209 g_utf8_get_char_validated
2210 g_utf8_offset_to_pointer
2211 g_utf8_pointer_to_offset
2212 g_utf8_prev_char
2213 g_utf8_find_next_char
2214 g_utf8_find_prev_char
2215 g_utf8_strlen
2216 g_utf8_strncpy
2217 g_utf8_strchr
2218 g_utf8_strrchr
2219 g_utf8_strreverse
2220 g_utf8_validate
2221
2222 <SUBSECTION>
2223 g_utf8_strup
2224 g_utf8_strdown
2225 g_utf8_casefold
2226 g_utf8_normalize
2227 GNormalizeMode
2228 g_utf8_collate
2229 g_utf8_collate_key
2230 g_utf8_collate_key_for_filename
2231
2232 <SUBSECTION>
2233 g_utf8_to_utf16
2234 g_utf8_to_ucs4
2235 g_utf8_to_ucs4_fast
2236 g_utf16_to_ucs4
2237 g_utf16_to_utf8
2238 g_ucs4_to_utf16
2239 g_ucs4_to_utf8
2240 g_unichar_to_utf8
2241 </SECTION>
2242
2243 <SECTION>
2244 <TITLE>I18N</TITLE>
2245 <FILE>i18n</FILE>
2246 <INCLUDE>glib.h,glib/gi18n.h</INCLUDE>
2247 _
2248 Q_
2249 N_
2250 g_strip_context
2251 <SUBSECTION>
2252 g_get_language_names
2253 </SECTION>