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