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