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