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