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