glib2 2.2.4-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2228) hide show
  1. checksums.yaml +7 -0
  2. data/README +40 -0
  3. data/Rakefile +157 -0
  4. data/ext/glib2/depend +18 -0
  5. data/ext/glib2/extconf.rb +80 -0
  6. data/ext/glib2/glib2.def +147 -0
  7. data/ext/glib2/rbgcompat.h +29 -0
  8. data/ext/glib2/rbglib.c +1158 -0
  9. data/ext/glib2/rbglib.h +202 -0
  10. data/ext/glib2/rbglib2conversions.h +57 -0
  11. data/ext/glib2/rbglib_bookmarkfile.c +546 -0
  12. data/ext/glib2/rbglib_convert.c +197 -0
  13. data/ext/glib2/rbglib_error.c +164 -0
  14. data/ext/glib2/rbglib_fileutils.c +119 -0
  15. data/ext/glib2/rbglib_gettext.c +48 -0
  16. data/ext/glib2/rbglib_i18n.c +40 -0
  17. data/ext/glib2/rbglib_int64.c +165 -0
  18. data/ext/glib2/rbglib_io_constants.c +30 -0
  19. data/ext/glib2/rbglib_iochannel.c +824 -0
  20. data/ext/glib2/rbglib_iochannel_win32_socket.c +56 -0
  21. data/ext/glib2/rbglib_iochannelerror.c +49 -0
  22. data/ext/glib2/rbglib_keyfile.c +755 -0
  23. data/ext/glib2/rbglib_maincontext.c +565 -0
  24. data/ext/glib2/rbglib_mainloop.c +121 -0
  25. data/ext/glib2/rbglib_messages.c +148 -0
  26. data/ext/glib2/rbglib_pollfd.c +112 -0
  27. data/ext/glib2/rbglib_shell.c +64 -0
  28. data/ext/glib2/rbglib_shellerror.c +34 -0
  29. data/ext/glib2/rbglib_source.c +242 -0
  30. data/ext/glib2/rbglib_spawn.c +245 -0
  31. data/ext/glib2/rbglib_spawnerror.c +53 -0
  32. data/ext/glib2/rbglib_threads.c +61 -0
  33. data/ext/glib2/rbglib_timer.c +127 -0
  34. data/ext/glib2/rbglib_ucs4.c +79 -0
  35. data/ext/glib2/rbglib_unichar.c +201 -0
  36. data/ext/glib2/rbglib_unicode.c +90 -0
  37. data/ext/glib2/rbglib_utf16.c +78 -0
  38. data/ext/glib2/rbglib_utf8.c +257 -0
  39. data/ext/glib2/rbglib_utils.c +339 -0
  40. data/ext/glib2/rbglib_win32.c +112 -0
  41. data/ext/glib2/rbglibdeprecated.c +56 -0
  42. data/ext/glib2/rbglibdeprecated.h +34 -0
  43. data/ext/glib2/rbgobj_boxed.c +295 -0
  44. data/ext/glib2/rbgobj_closure.c +345 -0
  45. data/ext/glib2/rbgobj_convert.c +195 -0
  46. data/ext/glib2/rbgobj_enumflags.c +109 -0
  47. data/ext/glib2/rbgobj_enums.c +401 -0
  48. data/ext/glib2/rbgobj_flags.c +522 -0
  49. data/ext/glib2/rbgobj_object.c +885 -0
  50. data/ext/glib2/rbgobj_param.c +378 -0
  51. data/ext/glib2/rbgobj_paramspecs.c +311 -0
  52. data/ext/glib2/rbgobj_signal.c +978 -0
  53. data/ext/glib2/rbgobj_strv.c +44 -0
  54. data/ext/glib2/rbgobj_type.c +846 -0
  55. data/ext/glib2/rbgobj_typeinstance.c +128 -0
  56. data/ext/glib2/rbgobj_typeinterface.c +149 -0
  57. data/ext/glib2/rbgobj_typemodule.c +72 -0
  58. data/ext/glib2/rbgobj_typeplugin.c +57 -0
  59. data/ext/glib2/rbgobj_value.c +395 -0
  60. data/ext/glib2/rbgobj_valuearray.c +100 -0
  61. data/ext/glib2/rbgobj_valuetypes.c +243 -0
  62. data/ext/glib2/rbgobject.c +387 -0
  63. data/ext/glib2/rbgobject.h +301 -0
  64. data/ext/glib2/rbgprivate.h +178 -0
  65. data/ext/glib2/rbgutil.c +183 -0
  66. data/ext/glib2/rbgutil.h +119 -0
  67. data/ext/glib2/rbgutil_callback.c +272 -0
  68. data/ext/glib2/rbgutil_list.c +173 -0
  69. data/ext/glib2/rbgutil_list.h +85 -0
  70. data/ext/glib2/rbgutildeprecated.c +252 -0
  71. data/ext/glib2/rbgutildeprecated.h +63 -0
  72. data/extconf.rb +49 -0
  73. data/lib/2.0/glib2.so +0 -0
  74. data/lib/2.1/glib2.so +0 -0
  75. data/lib/2.2/glib2.so +0 -0
  76. data/lib/glib-mkenums.rb +214 -0
  77. data/lib/glib2.rb +231 -0
  78. data/lib/glib2/deprecatable.rb +153 -0
  79. data/lib/gnome2-raketask.rb +8 -0
  80. data/lib/gnome2/rake/external-package.rb +227 -0
  81. data/lib/gnome2/rake/native-binary-build-task.rb +129 -0
  82. data/lib/gnome2/rake/package-task.rb +273 -0
  83. data/lib/gnome2/rake/package.rb +152 -0
  84. data/lib/gnome2/rake/source-download-task.rb +82 -0
  85. data/lib/gnome2/rake/windows-binary-build-task.rb +303 -0
  86. data/lib/gnome2/rake/windows-binary-download-task.rb +181 -0
  87. data/lib/mkmf-gnome2.rb +637 -0
  88. data/sample/bookmarkfile.rb +66 -0
  89. data/sample/idle.rb +41 -0
  90. data/sample/iochannel.rb +44 -0
  91. data/sample/keyfile.rb +62 -0
  92. data/sample/shell.rb +36 -0
  93. data/sample/spawn.rb +25 -0
  94. data/sample/timeout.rb +28 -0
  95. data/sample/timeout2.rb +35 -0
  96. data/sample/timer.rb +40 -0
  97. data/sample/type-register.rb +103 -0
  98. data/sample/type-register2.rb +104 -0
  99. data/sample/utils.rb +54 -0
  100. data/test/glib-test-init.rb +5 -0
  101. data/test/glib-test-utils.rb +12 -0
  102. data/test/run-test.rb +21 -0
  103. data/test/test_enum.rb +99 -0
  104. data/test/test_file_utils.rb +53 -0
  105. data/test/test_flags.rb +129 -0
  106. data/test/test_glib2.rb +122 -0
  107. data/test/test_iochannel.rb +275 -0
  108. data/test/test_key_file.rb +42 -0
  109. data/test/test_mkenums.rb +25 -0
  110. data/test/test_poll_fd.rb +26 -0
  111. data/test/test_signal.rb +20 -0
  112. data/test/test_source.rb +63 -0
  113. data/test/test_spawn.rb +33 -0
  114. data/test/test_timeout.rb +28 -0
  115. data/test/test_unicode.rb +394 -0
  116. data/test/test_utils.rb +37 -0
  117. data/test/test_value.rb +31 -0
  118. data/test/test_win32.rb +13 -0
  119. data/vendor/local/bin/certtool.exe +0 -0
  120. data/vendor/local/bin/danetool.exe +0 -0
  121. data/vendor/local/bin/envsubst.exe +0 -0
  122. data/vendor/local/bin/gdbus-codegen +39 -0
  123. data/vendor/local/bin/gdbus.exe +0 -0
  124. data/vendor/local/bin/gettext.exe +0 -0
  125. data/vendor/local/bin/gettext.sh +121 -0
  126. data/vendor/local/bin/gio-querymodules.exe +0 -0
  127. data/vendor/local/bin/glib-compile-resources.exe +0 -0
  128. data/vendor/local/bin/glib-compile-schemas.exe +0 -0
  129. data/vendor/local/bin/glib-genmarshal.exe +0 -0
  130. data/vendor/local/bin/glib-gettextize +187 -0
  131. data/vendor/local/bin/glib-mkenums +565 -0
  132. data/vendor/local/bin/gnutls-cli-debug.exe +0 -0
  133. data/vendor/local/bin/gnutls-cli.exe +0 -0
  134. data/vendor/local/bin/gnutls-serv.exe +0 -0
  135. data/vendor/local/bin/gobject-query.exe +0 -0
  136. data/vendor/local/bin/gresource.exe +0 -0
  137. data/vendor/local/bin/gsettings.exe +0 -0
  138. data/vendor/local/bin/gspawn-win64-helper-console.exe +0 -0
  139. data/vendor/local/bin/gspawn-win64-helper.exe +0 -0
  140. data/vendor/local/bin/iconv.exe +0 -0
  141. data/vendor/local/bin/libasprintf-0.dll +0 -0
  142. data/vendor/local/bin/libcharset-1.dll +0 -0
  143. data/vendor/local/bin/libffi-6.dll +0 -0
  144. data/vendor/local/bin/libgio-2.0-0.dll +0 -0
  145. data/vendor/local/bin/libglib-2.0-0.dll +0 -0
  146. data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
  147. data/vendor/local/bin/libgmp-10.dll +0 -0
  148. data/vendor/local/bin/libgnutls-28.def +861 -0
  149. data/vendor/local/bin/libgnutls-28.dll +0 -0
  150. data/vendor/local/bin/libgnutls-openssl-27.dll +0 -0
  151. data/vendor/local/bin/libgnutls-openssl-28.def +228 -0
  152. data/vendor/local/bin/libgnutls-xssl-0.dll +0 -0
  153. data/vendor/local/bin/libgnutls-xssl-28.def +13 -0
  154. data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
  155. data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
  156. data/vendor/local/bin/libhogweed-2-5.dll +0 -0
  157. data/vendor/local/bin/libiconv-2.dll +0 -0
  158. data/vendor/local/bin/libintl-8.dll +0 -0
  159. data/vendor/local/bin/libnettle-4-7.dll +0 -0
  160. data/vendor/local/bin/nettle-hash.exe +0 -0
  161. data/vendor/local/bin/nettle-lfib-stream.exe +0 -0
  162. data/vendor/local/bin/ngettext.exe +0 -0
  163. data/vendor/local/bin/ocsptool.exe +0 -0
  164. data/vendor/local/bin/pkcs1-conv.exe +0 -0
  165. data/vendor/local/bin/psktool.exe +0 -0
  166. data/vendor/local/bin/sexp-conv.exe +0 -0
  167. data/vendor/local/bin/srptool.exe +0 -0
  168. data/vendor/local/include/autosprintf.h +67 -0
  169. data/vendor/local/include/gio-win32-2.0/gio/gwin32inputstream.h +82 -0
  170. data/vendor/local/include/gio-win32-2.0/gio/gwin32outputstream.h +81 -0
  171. data/vendor/local/include/glib-2.0/gio/gaction.h +98 -0
  172. data/vendor/local/include/glib-2.0/gio/gactiongroup.h +161 -0
  173. data/vendor/local/include/glib-2.0/gio/gactiongroupexporter.h +45 -0
  174. data/vendor/local/include/glib-2.0/gio/gactionmap.h +95 -0
  175. data/vendor/local/include/glib-2.0/gio/gappinfo.h +313 -0
  176. data/vendor/local/include/glib-2.0/gio/gapplication.h +236 -0
  177. data/vendor/local/include/glib-2.0/gio/gapplicationcommandline.h +122 -0
  178. data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +124 -0
  179. data/vendor/local/include/glib-2.0/gio/gasyncresult.h +85 -0
  180. data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +133 -0
  181. data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +86 -0
  182. data/vendor/local/include/glib-2.0/gio/gbytesicon.h +52 -0
  183. data/vendor/local/include/glib-2.0/gio/gcancellable.h +118 -0
  184. data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +63 -0
  185. data/vendor/local/include/glib-2.0/gio/gcontenttype.h +71 -0
  186. data/vendor/local/include/glib-2.0/gio/gconverter.h +96 -0
  187. data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
  188. data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
  189. data/vendor/local/include/glib-2.0/gio/gcredentials.h +85 -0
  190. data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +180 -0
  191. data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +125 -0
  192. data/vendor/local/include/glib-2.0/gio/gdbusactiongroup.h +54 -0
  193. data/vendor/local/include/glib-2.0/gio/gdbusaddress.h +65 -0
  194. data/vendor/local/include/glib-2.0/gio/gdbusauthobserver.h +51 -0
  195. data/vendor/local/include/glib-2.0/gio/gdbusconnection.h +663 -0
  196. data/vendor/local/include/glib-2.0/gio/gdbuserror.h +109 -0
  197. data/vendor/local/include/glib-2.0/gio/gdbusinterface.h +81 -0
  198. data/vendor/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h +127 -0
  199. data/vendor/local/include/glib-2.0/gio/gdbusintrospection.h +325 -0
  200. data/vendor/local/include/glib-2.0/gio/gdbusmenumodel.h +45 -0
  201. data/vendor/local/include/glib-2.0/gio/gdbusmessage.h +197 -0
  202. data/vendor/local/include/glib-2.0/gio/gdbusmethodinvocation.h +97 -0
  203. data/vendor/local/include/glib-2.0/gio/gdbusnameowning.h +115 -0
  204. data/vendor/local/include/glib-2.0/gio/gdbusnamewatching.h +102 -0
  205. data/vendor/local/include/glib-2.0/gio/gdbusobject.h +78 -0
  206. data/vendor/local/include/glib-2.0/gio/gdbusobjectmanager.h +94 -0
  207. data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h +146 -0
  208. data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h +93 -0
  209. data/vendor/local/include/glib-2.0/gio/gdbusobjectproxy.h +79 -0
  210. data/vendor/local/include/glib-2.0/gio/gdbusobjectskeleton.h +96 -0
  211. data/vendor/local/include/glib-2.0/gio/gdbusproxy.h +214 -0
  212. data/vendor/local/include/glib-2.0/gio/gdbusserver.h +60 -0
  213. data/vendor/local/include/glib-2.0/gio/gdbusutils.h +55 -0
  214. data/vendor/local/include/glib-2.0/gio/gdrive.h +259 -0
  215. data/vendor/local/include/glib-2.0/gio/gemblem.h +61 -0
  216. data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +81 -0
  217. data/vendor/local/include/glib-2.0/gio/gfile.h +1250 -0
  218. data/vendor/local/include/glib-2.0/gio/gfileattribute.h +84 -0
  219. data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +144 -0
  220. data/vendor/local/include/glib-2.0/gio/gfileicon.h +57 -0
  221. data/vendor/local/include/glib-2.0/gio/gfileinfo.h +1070 -0
  222. data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +114 -0
  223. data/vendor/local/include/glib-2.0/gio/gfileiostream.h +121 -0
  224. data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +98 -0
  225. data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +79 -0
  226. data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +122 -0
  227. data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +78 -0
  228. data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +78 -0
  229. data/vendor/local/include/glib-2.0/gio/gicon.h +101 -0
  230. data/vendor/local/include/glib-2.0/gio/ginetaddress.h +124 -0
  231. data/vendor/local/include/glib-2.0/gio/ginetaddressmask.h +85 -0
  232. data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +78 -0
  233. data/vendor/local/include/glib-2.0/gio/ginitable.h +99 -0
  234. data/vendor/local/include/glib-2.0/gio/ginputstream.h +201 -0
  235. data/vendor/local/include/glib-2.0/gio/gio.h +167 -0
  236. data/vendor/local/include/glib-2.0/gio/gioenums.h +1816 -0
  237. data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +167 -0
  238. data/vendor/local/include/glib-2.0/gio/gioerror.h +53 -0
  239. data/vendor/local/include/glib-2.0/gio/giomodule.h +169 -0
  240. data/vendor/local/include/glib-2.0/gio/gioscheduler.h +54 -0
  241. data/vendor/local/include/glib-2.0/gio/giostream.h +135 -0
  242. data/vendor/local/include/glib-2.0/gio/giotypes.h +535 -0
  243. data/vendor/local/include/glib-2.0/gio/gloadableicon.h +99 -0
  244. data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +90 -0
  245. data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +107 -0
  246. data/vendor/local/include/glib-2.0/gio/gmenu.h +182 -0
  247. data/vendor/local/include/glib-2.0/gio/gmenuexporter.h +40 -0
  248. data/vendor/local/include/glib-2.0/gio/gmenumodel.h +305 -0
  249. data/vendor/local/include/glib-2.0/gio/gmount.h +276 -0
  250. data/vendor/local/include/glib-2.0/gio/gmountoperation.h +140 -0
  251. data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +61 -0
  252. data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +78 -0
  253. data/vendor/local/include/glib-2.0/gio/gnetworking.h +82 -0
  254. data/vendor/local/include/glib-2.0/gio/gnetworkmonitor.h +93 -0
  255. data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +76 -0
  256. data/vendor/local/include/glib-2.0/gio/gnotification.h +97 -0
  257. data/vendor/local/include/glib-2.0/gio/goutputstream.h +254 -0
  258. data/vendor/local/include/glib-2.0/gio/gpermission.h +127 -0
  259. data/vendor/local/include/glib-2.0/gio/gpollableinputstream.h +105 -0
  260. data/vendor/local/include/glib-2.0/gio/gpollableoutputstream.h +105 -0
  261. data/vendor/local/include/glib-2.0/gio/gpollableutils.h +64 -0
  262. data/vendor/local/include/glib-2.0/gio/gpropertyaction.h +47 -0
  263. data/vendor/local/include/glib-2.0/gio/gproxy.h +128 -0
  264. data/vendor/local/include/glib-2.0/gio/gproxyaddress.h +86 -0
  265. data/vendor/local/include/glib-2.0/gio/gproxyaddressenumerator.h +74 -0
  266. data/vendor/local/include/glib-2.0/gio/gproxyresolver.h +95 -0
  267. data/vendor/local/include/glib-2.0/gio/gremoteactiongroup.h +75 -0
  268. data/vendor/local/include/glib-2.0/gio/gresolver.h +212 -0
  269. data/vendor/local/include/glib-2.0/gio/gresource.h +129 -0
  270. data/vendor/local/include/glib-2.0/gio/gseekable.h +103 -0
  271. data/vendor/local/include/glib-2.0/gio/gsettings.h +331 -0
  272. data/vendor/local/include/glib-2.0/gio/gsettingsbackend.h +158 -0
  273. data/vendor/local/include/glib-2.0/gio/gsettingsschema.h +104 -0
  274. data/vendor/local/include/glib-2.0/gio/gsimpleaction.h +59 -0
  275. data/vendor/local/include/glib-2.0/gio/gsimpleactiongroup.h +97 -0
  276. data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +162 -0
  277. data/vendor/local/include/glib-2.0/gio/gsimplepermission.h +45 -0
  278. data/vendor/local/include/glib-2.0/gio/gsimpleproxyresolver.h +89 -0
  279. data/vendor/local/include/glib-2.0/gio/gsocket.h +289 -0
  280. data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +82 -0
  281. data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +91 -0
  282. data/vendor/local/include/glib-2.0/gio/gsocketclient.h +197 -0
  283. data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +75 -0
  284. data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +115 -0
  285. data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +109 -0
  286. data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +150 -0
  287. data/vendor/local/include/glib-2.0/gio/gsocketservice.h +91 -0
  288. data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +59 -0
  289. data/vendor/local/include/glib-2.0/gio/gsubprocess.h +167 -0
  290. data/vendor/local/include/glib-2.0/gio/gsubprocesslauncher.h +116 -0
  291. data/vendor/local/include/glib-2.0/gio/gtask.h +158 -0
  292. data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +69 -0
  293. data/vendor/local/include/glib-2.0/gio/gtcpwrapperconnection.h +69 -0
  294. data/vendor/local/include/glib-2.0/gio/gtestdbus.h +72 -0
  295. data/vendor/local/include/glib-2.0/gio/gthemedicon.h +68 -0
  296. data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
  297. data/vendor/local/include/glib-2.0/gio/gtlsbackend.h +96 -0
  298. data/vendor/local/include/glib-2.0/gio/gtlscertificate.h +92 -0
  299. data/vendor/local/include/glib-2.0/gio/gtlsclientconnection.h +71 -0
  300. data/vendor/local/include/glib-2.0/gio/gtlsconnection.h +154 -0
  301. data/vendor/local/include/glib-2.0/gio/gtlsdatabase.h +247 -0
  302. data/vendor/local/include/glib-2.0/gio/gtlsfiledatabase.h +58 -0
  303. data/vendor/local/include/glib-2.0/gio/gtlsinteraction.h +148 -0
  304. data/vendor/local/include/glib-2.0/gio/gtlspassword.h +110 -0
  305. data/vendor/local/include/glib-2.0/gio/gtlsserverconnection.h +61 -0
  306. data/vendor/local/include/glib-2.0/gio/gvfs.h +132 -0
  307. data/vendor/local/include/glib-2.0/gio/gvolume.h +251 -0
  308. data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +154 -0
  309. data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +62 -0
  310. data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +58 -0
  311. data/vendor/local/include/glib-2.0/glib-object.h +40 -0
  312. data/vendor/local/include/glib-2.0/glib-unix.h +119 -0
  313. data/vendor/local/include/glib-2.0/glib.h +112 -0
  314. data/vendor/local/include/glib-2.0/glib/deprecated/gallocator.h +88 -0
  315. data/vendor/local/include/glib-2.0/glib/deprecated/gcache.h +75 -0
  316. data/vendor/local/include/glib-2.0/glib/deprecated/gcompletion.h +83 -0
  317. data/vendor/local/include/glib-2.0/glib/deprecated/gmain.h +139 -0
  318. data/vendor/local/include/glib-2.0/glib/deprecated/grel.h +105 -0
  319. data/vendor/local/include/glib-2.0/glib/deprecated/gthread.h +293 -0
  320. data/vendor/local/include/glib-2.0/glib/galloca.h +103 -0
  321. data/vendor/local/include/glib-2.0/glib/garray.h +238 -0
  322. data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +109 -0
  323. data/vendor/local/include/glib-2.0/glib/gatomic.h +281 -0
  324. data/vendor/local/include/glib-2.0/glib/gbacktrace.h +64 -0
  325. data/vendor/local/include/glib-2.0/glib/gbase64.h +61 -0
  326. data/vendor/local/include/glib-2.0/glib/gbitlock.h +76 -0
  327. data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +255 -0
  328. data/vendor/local/include/glib-2.0/glib/gbytes.h +90 -0
  329. data/vendor/local/include/glib-2.0/glib/gcharset.h +43 -0
  330. data/vendor/local/include/glib-2.0/glib/gchecksum.h +101 -0
  331. data/vendor/local/include/glib-2.0/glib/gconvert.h +199 -0
  332. data/vendor/local/include/glib-2.0/glib/gdataset.h +150 -0
  333. data/vendor/local/include/glib-2.0/glib/gdate.h +309 -0
  334. data/vendor/local/include/glib-2.0/glib/gdatetime.h +264 -0
  335. data/vendor/local/include/glib-2.0/glib/gdir.h +64 -0
  336. data/vendor/local/include/glib-2.0/glib/genviron.h +78 -0
  337. data/vendor/local/include/glib-2.0/glib/gerror.h +118 -0
  338. data/vendor/local/include/glib-2.0/glib/gfileutils.h +207 -0
  339. data/vendor/local/include/glib-2.0/glib/ggettext.h +63 -0
  340. data/vendor/local/include/glib-2.0/glib/ghash.h +185 -0
  341. data/vendor/local/include/glib-2.0/glib/ghmac.h +78 -0
  342. data/vendor/local/include/glib-2.0/glib/ghook.h +202 -0
  343. data/vendor/local/include/glib-2.0/glib/ghostutils.h +43 -0
  344. data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +36 -0
  345. data/vendor/local/include/glib-2.0/glib/gi18n.h +32 -0
  346. data/vendor/local/include/glib-2.0/glib/giochannel.h +413 -0
  347. data/vendor/local/include/glib-2.0/glib/gkeyfile.h +320 -0
  348. data/vendor/local/include/glib-2.0/glib/glist.h +152 -0
  349. data/vendor/local/include/glib-2.0/glib/gmacros.h +366 -0
  350. data/vendor/local/include/glib-2.0/glib/gmain.h +614 -0
  351. data/vendor/local/include/glib-2.0/glib/gmappedfile.h +58 -0
  352. data/vendor/local/include/glib-2.0/glib/gmarkup.h +262 -0
  353. data/vendor/local/include/glib-2.0/glib/gmem.h +298 -0
  354. data/vendor/local/include/glib-2.0/glib/gmessages.h +407 -0
  355. data/vendor/local/include/glib-2.0/glib/gnode.h +322 -0
  356. data/vendor/local/include/glib-2.0/glib/goption.h +377 -0
  357. data/vendor/local/include/glib-2.0/glib/gpattern.h +53 -0
  358. data/vendor/local/include/glib-2.0/glib/gpoll.h +127 -0
  359. data/vendor/local/include/glib-2.0/glib/gprimes.h +50 -0
  360. data/vendor/local/include/glib-2.0/glib/gprintf.h +57 -0
  361. data/vendor/local/include/glib-2.0/glib/gqsort.h +45 -0
  362. data/vendor/local/include/glib-2.0/glib/gquark.h +68 -0
  363. data/vendor/local/include/glib-2.0/glib/gqueue.h +190 -0
  364. data/vendor/local/include/glib-2.0/glib/grand.h +99 -0
  365. data/vendor/local/include/glib-2.0/glib/gregex.h +610 -0
  366. data/vendor/local/include/glib-2.0/glib/gscanner.h +303 -0
  367. data/vendor/local/include/glib-2.0/glib/gsequence.h +171 -0
  368. data/vendor/local/include/glib-2.0/glib/gshell.h +59 -0
  369. data/vendor/local/include/glib-2.0/glib/gslice.h +98 -0
  370. data/vendor/local/include/glib-2.0/glib/gslist.h +143 -0
  371. data/vendor/local/include/glib-2.0/glib/gspawn.h +307 -0
  372. data/vendor/local/include/glib-2.0/glib/gstdio.h +171 -0
  373. data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +306 -0
  374. data/vendor/local/include/glib-2.0/glib/gstring.h +189 -0
  375. data/vendor/local/include/glib-2.0/glib/gstringchunk.h +57 -0
  376. data/vendor/local/include/glib-2.0/glib/gtestutils.h +421 -0
  377. data/vendor/local/include/glib-2.0/glib/gthread.h +271 -0
  378. data/vendor/local/include/glib-2.0/glib/gthreadpool.h +92 -0
  379. data/vendor/local/include/glib-2.0/glib/gtimer.h +74 -0
  380. data/vendor/local/include/glib-2.0/glib/gtimezone.h +89 -0
  381. data/vendor/local/include/glib-2.0/glib/gtrashstack.h +101 -0
  382. data/vendor/local/include/glib-2.0/glib/gtree.h +104 -0
  383. data/vendor/local/include/glib-2.0/glib/gtypes.h +482 -0
  384. data/vendor/local/include/glib-2.0/glib/gunicode.h +860 -0
  385. data/vendor/local/include/glib-2.0/glib/gurifuncs.h +83 -0
  386. data/vendor/local/include/glib-2.0/glib/gutils.h +374 -0
  387. data/vendor/local/include/glib-2.0/glib/gvariant.h +452 -0
  388. data/vendor/local/include/glib-2.0/glib/gvarianttype.h +380 -0
  389. data/vendor/local/include/glib-2.0/glib/gversion.h +55 -0
  390. data/vendor/local/include/glib-2.0/glib/gversionmacros.h +345 -0
  391. data/vendor/local/include/glib-2.0/glib/gwin32.h +134 -0
  392. data/vendor/local/include/glib-2.0/gmodule.h +115 -0
  393. data/vendor/local/include/glib-2.0/gobject/gbinding.h +149 -0
  394. data/vendor/local/include/glib-2.0/gobject/gboxed.h +122 -0
  395. data/vendor/local/include/glib-2.0/gobject/gclosure.h +297 -0
  396. data/vendor/local/include/glib-2.0/gobject/genums.h +273 -0
  397. data/vendor/local/include/glib-2.0/gobject/glib-types.h +358 -0
  398. data/vendor/local/include/glib-2.0/gobject/gmarshal.h +385 -0
  399. data/vendor/local/include/glib-2.0/gobject/gobject.h +672 -0
  400. data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +197 -0
  401. data/vendor/local/include/glib-2.0/gobject/gparam.h +447 -0
  402. data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1164 -0
  403. data/vendor/local/include/glib-2.0/gobject/gsignal.h +604 -0
  404. data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +38 -0
  405. data/vendor/local/include/glib-2.0/gobject/gtype.h +1990 -0
  406. data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +278 -0
  407. data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
  408. data/vendor/local/include/glib-2.0/gobject/gvalue.h +194 -0
  409. data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +104 -0
  410. data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +254 -0
  411. data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +300 -0
  412. data/vendor/local/include/gmp.h +2301 -0
  413. data/vendor/local/include/gnutls/abstract.h +454 -0
  414. data/vendor/local/include/gnutls/compat.h +401 -0
  415. data/vendor/local/include/gnutls/crypto.h +117 -0
  416. data/vendor/local/include/gnutls/dtls.h +92 -0
  417. data/vendor/local/include/gnutls/gnutls.h +2299 -0
  418. data/vendor/local/include/gnutls/ocsp.h +257 -0
  419. data/vendor/local/include/gnutls/openpgp.h +366 -0
  420. data/vendor/local/include/gnutls/openssl.h +329 -0
  421. data/vendor/local/include/gnutls/pkcs11.h +356 -0
  422. data/vendor/local/include/gnutls/pkcs12.h +135 -0
  423. data/vendor/local/include/gnutls/tpm.h +79 -0
  424. data/vendor/local/include/gnutls/x509.h +1192 -0
  425. data/vendor/local/include/gnutls/xssl.h +125 -0
  426. data/vendor/local/include/iconv.h +242 -0
  427. data/vendor/local/include/libcharset.h +46 -0
  428. data/vendor/local/include/libintl.h +464 -0
  429. data/vendor/local/include/localcharset.h +42 -0
  430. data/vendor/local/include/nettle/aes.h +85 -0
  431. data/vendor/local/include/nettle/arcfour.h +66 -0
  432. data/vendor/local/include/nettle/arctwo.h +82 -0
  433. data/vendor/local/include/nettle/asn1.h +144 -0
  434. data/vendor/local/include/nettle/base16.h +106 -0
  435. data/vendor/local/include/nettle/base64.h +153 -0
  436. data/vendor/local/include/nettle/bignum.h +121 -0
  437. data/vendor/local/include/nettle/blowfish.h +76 -0
  438. data/vendor/local/include/nettle/buffer.h +98 -0
  439. data/vendor/local/include/nettle/camellia.h +82 -0
  440. data/vendor/local/include/nettle/cast128.h +77 -0
  441. data/vendor/local/include/nettle/cbc.h +76 -0
  442. data/vendor/local/include/nettle/ctr.h +62 -0
  443. data/vendor/local/include/nettle/des-compat.h +154 -0
  444. data/vendor/local/include/nettle/des.h +111 -0
  445. data/vendor/local/include/nettle/dsa.h +293 -0
  446. data/vendor/local/include/nettle/ecc-curve.h +45 -0
  447. data/vendor/local/include/nettle/ecc.h +261 -0
  448. data/vendor/local/include/nettle/ecdsa.h +94 -0
  449. data/vendor/local/include/nettle/gcm.h +186 -0
  450. data/vendor/local/include/nettle/gosthash94.h +88 -0
  451. data/vendor/local/include/nettle/hmac.h +202 -0
  452. data/vendor/local/include/nettle/knuth-lfib.h +75 -0
  453. data/vendor/local/include/nettle/macros.h +238 -0
  454. data/vendor/local/include/nettle/md2.h +69 -0
  455. data/vendor/local/include/nettle/md4.h +73 -0
  456. data/vendor/local/include/nettle/md5-compat.h +50 -0
  457. data/vendor/local/include/nettle/md5.h +76 -0
  458. data/vendor/local/include/nettle/memxor.h +22 -0
  459. data/vendor/local/include/nettle/nettle-meta.h +232 -0
  460. data/vendor/local/include/nettle/nettle-stdint.h +286 -0
  461. data/vendor/local/include/nettle/nettle-types.h +92 -0
  462. data/vendor/local/include/nettle/pbkdf2.h +77 -0
  463. data/vendor/local/include/nettle/pgp.h +240 -0
  464. data/vendor/local/include/nettle/pkcs1.h +106 -0
  465. data/vendor/local/include/nettle/realloc.h +41 -0
  466. data/vendor/local/include/nettle/ripemd160.h +78 -0
  467. data/vendor/local/include/nettle/rsa-compat.h +131 -0
  468. data/vendor/local/include/nettle/rsa.h +419 -0
  469. data/vendor/local/include/nettle/salsa20.h +93 -0
  470. data/vendor/local/include/nettle/serpent.h +81 -0
  471. data/vendor/local/include/nettle/sexp.h +212 -0
  472. data/vendor/local/include/nettle/sha.h +34 -0
  473. data/vendor/local/include/nettle/sha1.h +78 -0
  474. data/vendor/local/include/nettle/sha2.h +156 -0
  475. data/vendor/local/include/nettle/sha3.h +176 -0
  476. data/vendor/local/include/nettle/twofish.h +78 -0
  477. data/vendor/local/include/nettle/umac.h +241 -0
  478. data/vendor/local/include/nettle/yarrow.h +137 -0
  479. data/vendor/local/lib/charset.alias +4 -0
  480. data/vendor/local/lib/gio/modules/libgiognutls.a +0 -0
  481. data/vendor/local/lib/gio/modules/libgiognutls.dll +0 -0
  482. data/vendor/local/lib/gio/modules/libgiognutls.dll.a +0 -0
  483. data/vendor/local/lib/gio/modules/libgiognutls.la +41 -0
  484. data/vendor/local/lib/glib-2.0/include/glibconfig.h +199 -0
  485. data/vendor/local/lib/gthread-2.0.def +3 -0
  486. data/vendor/local/lib/libasprintf.a +0 -0
  487. data/vendor/local/lib/libasprintf.dll.a +0 -0
  488. data/vendor/local/lib/libasprintf.la +41 -0
  489. data/vendor/local/lib/libcharset.a +0 -0
  490. data/vendor/local/lib/libcharset.dll.a +0 -0
  491. data/vendor/local/lib/libcharset.la +41 -0
  492. data/vendor/local/lib/libffi-3.2.1/include/ffi.h +487 -0
  493. data/vendor/local/lib/libffi-3.2.1/include/ffitarget.h +150 -0
  494. data/vendor/local/lib/libffi.a +0 -0
  495. data/vendor/local/lib/libffi.dll.a +0 -0
  496. data/vendor/local/lib/libffi.la +41 -0
  497. data/vendor/local/lib/libgio-2.0.dll.a +0 -0
  498. data/vendor/local/lib/libgio-2.0.la +41 -0
  499. data/vendor/local/lib/libglib-2.0.dll.a +0 -0
  500. data/vendor/local/lib/libglib-2.0.la +41 -0
  501. data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
  502. data/vendor/local/lib/libgmodule-2.0.la +41 -0
  503. data/vendor/local/lib/libgmp.dll.a +0 -0
  504. data/vendor/local/lib/libgmp.la +41 -0
  505. data/vendor/local/lib/libgnutls-openssl.a +0 -0
  506. data/vendor/local/lib/libgnutls-openssl.dll.a +0 -0
  507. data/vendor/local/lib/libgnutls-openssl.la +41 -0
  508. data/vendor/local/lib/libgnutls-xssl.a +0 -0
  509. data/vendor/local/lib/libgnutls-xssl.dll.a +0 -0
  510. data/vendor/local/lib/libgnutls-xssl.la +41 -0
  511. data/vendor/local/lib/libgnutls.a +0 -0
  512. data/vendor/local/lib/libgnutls.dll.a +0 -0
  513. data/vendor/local/lib/libgnutls.la +41 -0
  514. data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
  515. data/vendor/local/lib/libgobject-2.0.la +41 -0
  516. data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
  517. data/vendor/local/lib/libgthread-2.0.la +41 -0
  518. data/vendor/local/lib/libhogweed.a +0 -0
  519. data/vendor/local/lib/libhogweed.dll.a +0 -0
  520. data/vendor/local/lib/libiconv.dll.a +0 -0
  521. data/vendor/local/lib/libiconv.la +41 -0
  522. data/vendor/local/lib/libintl.a +0 -0
  523. data/vendor/local/lib/libintl.dll.a +0 -0
  524. data/vendor/local/lib/libintl.la +41 -0
  525. data/vendor/local/lib/libnettle.a +0 -0
  526. data/vendor/local/lib/libnettle.dll.a +0 -0
  527. data/vendor/local/lib/pkgconfig/gio-2.0.pc +18 -0
  528. data/vendor/local/lib/pkgconfig/gio-windows-2.0.pc +11 -0
  529. data/vendor/local/lib/pkgconfig/glib-2.0.pc +16 -0
  530. data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
  531. data/vendor/local/lib/pkgconfig/gmodule-export-2.0.pc +14 -0
  532. data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
  533. data/vendor/local/lib/pkgconfig/gnutls.pc +24 -0
  534. data/vendor/local/lib/pkgconfig/gobject-2.0.pc +12 -0
  535. data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
  536. data/vendor/local/lib/pkgconfig/hogweed.pc +18 -0
  537. data/vendor/local/lib/pkgconfig/libffi.pc +11 -0
  538. data/vendor/local/lib/pkgconfig/nettle.pc +11 -0
  539. data/vendor/local/lib/pkgconfig/patched +0 -0
  540. data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
  541. data/vendor/local/share/aclocal/glib-gettext.m4 +435 -0
  542. data/vendor/local/share/aclocal/gsettings.m4 +83 -0
  543. data/vendor/local/share/bash-completion/completions/gapplication +55 -0
  544. data/vendor/local/share/bash-completion/completions/gdbus +33 -0
  545. data/vendor/local/share/bash-completion/completions/gresource +58 -0
  546. data/vendor/local/share/bash-completion/completions/gsettings +84 -0
  547. data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +158 -0
  548. data/vendor/local/share/doc/gettext/bindtextdomain.3.html +154 -0
  549. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
  550. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
  551. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
  552. data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
  553. data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
  554. data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
  555. data/vendor/local/share/doc/gettext/envsubst.1.html +139 -0
  556. data/vendor/local/share/doc/gettext/gettext.1.html +188 -0
  557. data/vendor/local/share/doc/gettext/gettext.3.html +182 -0
  558. data/vendor/local/share/doc/gettext/javadoc2/allclasses-frame.html +25 -0
  559. data/vendor/local/share/doc/gettext/javadoc2/deprecated-list.html +87 -0
  560. data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/GettextResource.html +321 -0
  561. data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-frame.html +26 -0
  562. data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-summary.html +103 -0
  563. data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-tree.html +99 -0
  564. data/vendor/local/share/doc/gettext/javadoc2/help-doc.html +136 -0
  565. data/vendor/local/share/doc/gettext/javadoc2/index-all.html +111 -0
  566. data/vendor/local/share/doc/gettext/javadoc2/index.html +22 -0
  567. data/vendor/local/share/doc/gettext/javadoc2/overview-tree.html +96 -0
  568. data/vendor/local/share/doc/gettext/javadoc2/package-list +1 -0
  569. data/vendor/local/share/doc/gettext/javadoc2/packages.html +26 -0
  570. data/vendor/local/share/doc/gettext/javadoc2/serialized-form.html +87 -0
  571. data/vendor/local/share/doc/gettext/javadoc2/stylesheet.css +29 -0
  572. data/vendor/local/share/doc/gettext/ngettext.1.html +194 -0
  573. data/vendor/local/share/doc/gettext/ngettext.3.html +138 -0
  574. data/vendor/local/share/doc/gettext/textdomain.3.html +140 -0
  575. data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
  576. data/vendor/local/share/doc/libiconv/iconv.1.html +206 -0
  577. data/vendor/local/share/doc/libiconv/iconv.3.html +207 -0
  578. data/vendor/local/share/doc/libiconv/iconv_close.3.html +90 -0
  579. data/vendor/local/share/doc/libiconv/iconv_open.3.html +318 -0
  580. data/vendor/local/share/doc/libiconv/iconv_open_into.3.html +120 -0
  581. data/vendor/local/share/doc/libiconv/iconvctl.3.html +189 -0
  582. data/vendor/local/share/gdb/auto-load/libglib-2.0.so.0.4200.1-gdb.py +10 -0
  583. data/vendor/local/share/gdb/auto-load/libgobject-2.0.so.0.4200.1-gdb.py +10 -0
  584. data/vendor/local/share/gettext/ABOUT-NLS +1282 -0
  585. data/vendor/local/share/glib-2.0/codegen/__init__.py +27 -0
  586. data/vendor/local/share/glib-2.0/codegen/__init__.pyc +0 -0
  587. data/vendor/local/share/glib-2.0/codegen/__init__.pyo +0 -0
  588. data/vendor/local/share/glib-2.0/codegen/codegen.py +3412 -0
  589. data/vendor/local/share/glib-2.0/codegen/codegen.pyc +0 -0
  590. data/vendor/local/share/glib-2.0/codegen/codegen.pyo +0 -0
  591. data/vendor/local/share/glib-2.0/codegen/codegen_docbook.py +329 -0
  592. data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyc +0 -0
  593. data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyo +0 -0
  594. data/vendor/local/share/glib-2.0/codegen/codegen_main.py +201 -0
  595. data/vendor/local/share/glib-2.0/codegen/codegen_main.pyc +0 -0
  596. data/vendor/local/share/glib-2.0/codegen/codegen_main.pyo +0 -0
  597. data/vendor/local/share/glib-2.0/codegen/config.py +25 -0
  598. data/vendor/local/share/glib-2.0/codegen/config.pyc +0 -0
  599. data/vendor/local/share/glib-2.0/codegen/config.pyo +0 -0
  600. data/vendor/local/share/glib-2.0/codegen/dbustypes.py +424 -0
  601. data/vendor/local/share/glib-2.0/codegen/dbustypes.pyc +0 -0
  602. data/vendor/local/share/glib-2.0/codegen/dbustypes.pyo +0 -0
  603. data/vendor/local/share/glib-2.0/codegen/parser.py +288 -0
  604. data/vendor/local/share/glib-2.0/codegen/parser.pyc +0 -0
  605. data/vendor/local/share/glib-2.0/codegen/parser.pyo +0 -0
  606. data/vendor/local/share/glib-2.0/codegen/utils.py +102 -0
  607. data/vendor/local/share/glib-2.0/codegen/utils.pyc +0 -0
  608. data/vendor/local/share/glib-2.0/codegen/utils.pyo +0 -0
  609. data/vendor/local/share/glib-2.0/gdb/glib.py +257 -0
  610. data/vendor/local/share/glib-2.0/gdb/gobject.py +295 -0
  611. data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +268 -0
  612. data/vendor/local/share/glib-2.0/schemas/gschema.dtd +73 -0
  613. data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
  614. data/vendor/local/share/gtk-doc/html/gio/ExampleAnimal.html +1537 -0
  615. data/vendor/local/share/gtk-doc/html/gio/ExampleCat.html +679 -0
  616. data/vendor/local/share/gtk-doc/html/gio/ExampleObject.html +572 -0
  617. data/vendor/local/share/gtk-doc/html/gio/ExampleObjectManagerClient.html +561 -0
  618. data/vendor/local/share/gtk-doc/html/gio/GAction.html +832 -0
  619. data/vendor/local/share/gtk-doc/html/gio/GActionGroup.html +1242 -0
  620. data/vendor/local/share/gtk-doc/html/gio/GActionMap.html +507 -0
  621. data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +2160 -0
  622. data/vendor/local/share/gtk-doc/html/gio/GAppInfoMonitor.html +151 -0
  623. data/vendor/local/share/gtk-doc/html/gio/GApplication.html +2448 -0
  624. data/vendor/local/share/gtk-doc/html/gio/GApplicationCommandLine.html +981 -0
  625. data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +769 -0
  626. data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +511 -0
  627. data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +705 -0
  628. data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +393 -0
  629. data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +861 -0
  630. data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +317 -0
  631. data/vendor/local/share/gtk-doc/html/gio/GConverter.html +467 -0
  632. data/vendor/local/share/gtk-doc/html/gio/GCredentials.html +564 -0
  633. data/vendor/local/share/gtk-doc/html/gio/GDBusActionGroup.html +161 -0
  634. data/vendor/local/share/gtk-doc/html/gio/GDBusAuthObserver.html +390 -0
  635. data/vendor/local/share/gtk-doc/html/gio/GDBusConnection.html +4687 -0
  636. data/vendor/local/share/gtk-doc/html/gio/GDBusInterface.html +329 -0
  637. data/vendor/local/share/gtk-doc/html/gio/GDBusInterfaceSkeleton.html +882 -0
  638. data/vendor/local/share/gtk-doc/html/gio/GDBusMenuModel.html +152 -0
  639. data/vendor/local/share/gtk-doc/html/gio/GDBusMessage.html +2484 -0
  640. data/vendor/local/share/gtk-doc/html/gio/GDBusMethodInvocation.html +903 -0
  641. data/vendor/local/share/gtk-doc/html/gio/GDBusObject.html +404 -0
  642. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManager.html +592 -0
  643. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerClient.html +1281 -0
  644. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerServer.html +505 -0
  645. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectProxy.html +260 -0
  646. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectSkeleton.html +491 -0
  647. data/vendor/local/share/gtk-doc/html/gio/GDBusProxy.html +2170 -0
  648. data/vendor/local/share/gtk-doc/html/gio/GDBusServer.html +635 -0
  649. data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +1595 -0
  650. data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +699 -0
  651. data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1873 -0
  652. data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +354 -0
  653. data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +325 -0
  654. data/vendor/local/share/gtk-doc/html/gio/GFile.html +9688 -0
  655. data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +145 -0
  656. data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +713 -0
  657. data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +352 -0
  658. data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +200 -0
  659. data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +4261 -0
  660. data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +293 -0
  661. data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +475 -0
  662. data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +345 -0
  663. data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +287 -0
  664. data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +249 -0
  665. data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +251 -0
  666. data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +592 -0
  667. data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +772 -0
  668. data/vendor/local/share/gtk-doc/html/gio/GIcon.html +479 -0
  669. data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +1044 -0
  670. data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +419 -0
  671. data/vendor/local/share/gtk-doc/html/gio/GInitable.html +455 -0
  672. data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +1164 -0
  673. data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +354 -0
  674. data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +308 -0
  675. data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +577 -0
  676. data/vendor/local/share/gtk-doc/html/gio/GMenu.html +1877 -0
  677. data/vendor/local/share/gtk-doc/html/gio/GMenuModel.html +1205 -0
  678. data/vendor/local/share/gtk-doc/html/gio/GMount.html +1929 -0
  679. data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +1197 -0
  680. data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +451 -0
  681. data/vendor/local/share/gtk-doc/html/gio/GNetworkMonitor.html +499 -0
  682. data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +421 -0
  683. data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1561 -0
  684. data/vendor/local/share/gtk-doc/html/gio/GPermission.html +672 -0
  685. data/vendor/local/share/gtk-doc/html/gio/GPollableInputStream.html +411 -0
  686. data/vendor/local/share/gtk-doc/html/gio/GPollableOutputStream.html +411 -0
  687. data/vendor/local/share/gtk-doc/html/gio/GProxy.html +455 -0
  688. data/vendor/local/share/gtk-doc/html/gio/GProxyAddress.html +580 -0
  689. data/vendor/local/share/gtk-doc/html/gio/GProxyResolver.html +395 -0
  690. data/vendor/local/share/gtk-doc/html/gio/GRemoteActionGroup.html +290 -0
  691. data/vendor/local/share/gtk-doc/html/gio/GResolver.html +1171 -0
  692. data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +441 -0
  693. data/vendor/local/share/gtk-doc/html/gio/GSettings.html +3485 -0
  694. data/vendor/local/share/gtk-doc/html/gio/GSettingsBackend.html +755 -0
  695. data/vendor/local/share/gtk-doc/html/gio/GSimpleAction.html +540 -0
  696. data/vendor/local/share/gtk-doc/html/gio/GSimpleActionGroup.html +319 -0
  697. data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +1634 -0
  698. data/vendor/local/share/gtk-doc/html/gio/GSimplePermission.html +129 -0
  699. data/vendor/local/share/gtk-doc/html/gio/GSimpleProxyResolver.html +433 -0
  700. data/vendor/local/share/gtk-doc/html/gio/GSocket.html +3696 -0
  701. data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +374 -0
  702. data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +2079 -0
  703. data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +623 -0
  704. data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +631 -0
  705. data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +330 -0
  706. data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +868 -0
  707. data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +329 -0
  708. data/vendor/local/share/gtk-doc/html/gio/GSrvTarget.html +424 -0
  709. data/vendor/local/share/gtk-doc/html/gio/GSubprocess.html +1601 -0
  710. data/vendor/local/share/gtk-doc/html/gio/GTask.html +2562 -0
  711. data/vendor/local/share/gtk-doc/html/gio/GTcpConnection.html +209 -0
  712. data/vendor/local/share/gtk-doc/html/gio/GTcpWrapperConnection.html +211 -0
  713. data/vendor/local/share/gtk-doc/html/gio/GTestDBus.html +510 -0
  714. data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +464 -0
  715. data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +241 -0
  716. data/vendor/local/share/gtk-doc/html/gio/GTlsBackend.html +432 -0
  717. data/vendor/local/share/gtk-doc/html/gio/GTlsCertificate.html +590 -0
  718. data/vendor/local/share/gtk-doc/html/gio/GTlsClientConnection.html +550 -0
  719. data/vendor/local/share/gtk-doc/html/gio/GTlsConnection.html +1294 -0
  720. data/vendor/local/share/gtk-doc/html/gio/GTlsDatabase.html +1091 -0
  721. data/vendor/local/share/gtk-doc/html/gio/GTlsFileDatabase.html +208 -0
  722. data/vendor/local/share/gtk-doc/html/gio/GTlsInteraction.html +735 -0
  723. data/vendor/local/share/gtk-doc/html/gio/GTlsPassword.html +662 -0
  724. data/vendor/local/share/gtk-doc/html/gio/GTlsServerConnection.html +193 -0
  725. data/vendor/local/share/gtk-doc/html/gio/GUnixConnection.html +553 -0
  726. data/vendor/local/share/gtk-doc/html/gio/GUnixCredentialsMessage.html +268 -0
  727. data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +455 -0
  728. data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +349 -0
  729. data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +314 -0
  730. data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +314 -0
  731. data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +612 -0
  732. data/vendor/local/share/gtk-doc/html/gio/GVfs.html +358 -0
  733. data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1391 -0
  734. data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +926 -0
  735. data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +330 -0
  736. data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +220 -0
  737. data/vendor/local/share/gtk-doc/html/gio/annotation-glossary.html +76 -0
  738. data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +148 -0
  739. data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +157 -0
  740. data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1083 -0
  741. data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +210 -0
  742. data/vendor/local/share/gtk-doc/html/gio/api-index-2-26.html +1640 -0
  743. data/vendor/local/share/gtk-doc/html/gio/api-index-2-28.html +715 -0
  744. data/vendor/local/share/gtk-doc/html/gio/api-index-2-30.html +686 -0
  745. data/vendor/local/share/gtk-doc/html/gio/api-index-2-32.html +725 -0
  746. data/vendor/local/share/gtk-doc/html/gio/api-index-2-34.html +268 -0
  747. data/vendor/local/share/gtk-doc/html/gio/api-index-2-36.html +259 -0
  748. data/vendor/local/share/gtk-doc/html/gio/api-index-2-38.html +161 -0
  749. data/vendor/local/share/gtk-doc/html/gio/api-index-2-40.html +369 -0
  750. data/vendor/local/share/gtk-doc/html/gio/api-index-2-42.html +50 -0
  751. data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +198 -0
  752. data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +9512 -0
  753. data/vendor/local/share/gtk-doc/html/gio/application.html +80 -0
  754. data/vendor/local/share/gtk-doc/html/gio/async.html +48 -0
  755. data/vendor/local/share/gtk-doc/html/gio/ch01.html +232 -0
  756. data/vendor/local/share/gtk-doc/html/gio/ch02.html +114 -0
  757. data/vendor/local/share/gtk-doc/html/gio/ch03.html +45 -0
  758. data/vendor/local/share/gtk-doc/html/gio/ch30.html +75 -0
  759. data/vendor/local/share/gtk-doc/html/gio/ch31.html +217 -0
  760. data/vendor/local/share/gtk-doc/html/gio/ch31s02.html +41 -0
  761. data/vendor/local/share/gtk-doc/html/gio/ch31s03.html +39 -0
  762. data/vendor/local/share/gtk-doc/html/gio/ch32.html +56 -0
  763. data/vendor/local/share/gtk-doc/html/gio/ch32s02.html +59 -0
  764. data/vendor/local/share/gtk-doc/html/gio/ch32s03.html +159 -0
  765. data/vendor/local/share/gtk-doc/html/gio/ch32s04.html +46 -0
  766. data/vendor/local/share/gtk-doc/html/gio/ch32s05.html +48 -0
  767. data/vendor/local/share/gtk-doc/html/gio/ch32s06.html +278 -0
  768. data/vendor/local/share/gtk-doc/html/gio/ch32s07.html +160 -0
  769. data/vendor/local/share/gtk-doc/html/gio/ch33.html +116 -0
  770. data/vendor/local/share/gtk-doc/html/gio/ch33s02.html +142 -0
  771. data/vendor/local/share/gtk-doc/html/gio/ch33s03.html +202 -0
  772. data/vendor/local/share/gtk-doc/html/gio/ch33s04.html +97 -0
  773. data/vendor/local/share/gtk-doc/html/gio/ch33s05.html +931 -0
  774. data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
  775. data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +131 -0
  776. data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
  777. data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
  778. data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
  779. data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
  780. data/vendor/local/share/gtk-doc/html/gio/gapplication-tool.html +288 -0
  781. data/vendor/local/share/gtk-doc/html/gio/gdbus-codegen.html +1098 -0
  782. data/vendor/local/share/gtk-doc/html/gio/gdbus-convenience.html +65 -0
  783. data/vendor/local/share/gtk-doc/html/gio/gdbus-lowlevel.html +59 -0
  784. data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Animal.html +161 -0
  785. data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Cat.html +51 -0
  786. data/vendor/local/share/gtk-doc/html/gio/gdbus.html +300 -0
  787. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Addresses.html +390 -0
  788. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Introspection-Data.html +1572 -0
  789. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Utilities.html +398 -0
  790. data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +1131 -0
  791. data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +613 -0
  792. data/vendor/local/share/gtk-doc/html/gio/gio-GActionGroup-exporter.html +192 -0
  793. data/vendor/local/share/gtk-doc/html/gio/gio-GBytesIcon.html +162 -0
  794. data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +595 -0
  795. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +214 -0
  796. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +214 -0
  797. data/vendor/local/share/gtk-doc/html/gio/gio-GDBusError.html +1106 -0
  798. data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +650 -0
  799. data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +539 -0
  800. data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +365 -0
  801. data/vendor/local/share/gtk-doc/html/gio/gio-GInetAddressMask.html +443 -0
  802. data/vendor/local/share/gtk-doc/html/gio/gio-GMenuModel-exporter.html +183 -0
  803. data/vendor/local/share/gtk-doc/html/gio/gio-GNotification.html +670 -0
  804. data/vendor/local/share/gtk-doc/html/gio/gio-GPropertyAction.html +177 -0
  805. data/vendor/local/share/gtk-doc/html/gio/gio-GResource.html +1141 -0
  806. data/vendor/local/share/gtk-doc/html/gio/gio-GSettingsSchema-GSettingsSchemaSource.html +1186 -0
  807. data/vendor/local/share/gtk-doc/html/gio/gio-GSubprocessLauncher.html +931 -0
  808. data/vendor/local/share/gtk-doc/html/gio/gio-GWin32InputStream.html +258 -0
  809. data/vendor/local/share/gtk-doc/html/gio/gio-GWin32OutputStream.html +259 -0
  810. data/vendor/local/share/gtk-doc/html/gio/gio-Owning-Bus-Names.html +658 -0
  811. data/vendor/local/share/gtk-doc/html/gio/gio-TLS-Overview.html +321 -0
  812. data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +1398 -0
  813. data/vendor/local/share/gtk-doc/html/gio/gio-Watching-Bus-Names.html +575 -0
  814. data/vendor/local/share/gtk-doc/html/gio/gio-gnetworking.h.html +94 -0
  815. data/vendor/local/share/gtk-doc/html/gio/gio-gpollableutils.html +475 -0
  816. data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +188 -0
  817. data/vendor/local/share/gtk-doc/html/gio/gio-querymodules.html +53 -0
  818. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +2715 -0
  819. data/vendor/local/share/gtk-doc/html/gio/glib-compile-resources.html +209 -0
  820. data/vendor/local/share/gtk-doc/html/gio/glib-compile-schemas.html +111 -0
  821. data/vendor/local/share/gtk-doc/html/gio/gresource-tool.html +111 -0
  822. data/vendor/local/share/gtk-doc/html/gio/gsettings-tool.html +178 -0
  823. data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
  824. data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +60 -0
  825. data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
  826. data/vendor/local/share/gtk-doc/html/gio/icons.html +53 -0
  827. data/vendor/local/share/gtk-doc/html/gio/index.html +646 -0
  828. data/vendor/local/share/gtk-doc/html/gio/index.sgml +4046 -0
  829. data/vendor/local/share/gtk-doc/html/gio/left-insensitive.png +0 -0
  830. data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
  831. data/vendor/local/share/gtk-doc/html/gio/menu-example.png +0 -0
  832. data/vendor/local/share/gtk-doc/html/gio/menu-model.png +0 -0
  833. data/vendor/local/share/gtk-doc/html/gio/migrating.html +82 -0
  834. data/vendor/local/share/gtk-doc/html/gio/networking.html +75 -0
  835. data/vendor/local/share/gtk-doc/html/gio/permissions.html +39 -0
  836. data/vendor/local/share/gtk-doc/html/gio/pt01.html +40 -0
  837. data/vendor/local/share/gtk-doc/html/gio/pt02.html +572 -0
  838. data/vendor/local/share/gtk-doc/html/gio/resolver.html +53 -0
  839. data/vendor/local/share/gtk-doc/html/gio/resources.html +33 -0
  840. data/vendor/local/share/gtk-doc/html/gio/right-insensitive.png +0 -0
  841. data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
  842. data/vendor/local/share/gtk-doc/html/gio/running-gio-apps.html +189 -0
  843. data/vendor/local/share/gtk-doc/html/gio/settings.html +42 -0
  844. data/vendor/local/share/gtk-doc/html/gio/streaming.html +107 -0
  845. data/vendor/local/share/gtk-doc/html/gio/style.css +476 -0
  846. data/vendor/local/share/gtk-doc/html/gio/subprocesses.html +38 -0
  847. data/vendor/local/share/gtk-doc/html/gio/testing.html +33 -0
  848. data/vendor/local/share/gtk-doc/html/gio/tls.html +62 -0
  849. data/vendor/local/share/gtk-doc/html/gio/tools.html +56 -0
  850. data/vendor/local/share/gtk-doc/html/gio/types.html +44 -0
  851. data/vendor/local/share/gtk-doc/html/gio/up-insensitive.png +0 -0
  852. data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
  853. data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
  854. data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
  855. data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_breadth-first_traversal.svg +134 -0
  856. data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_inorder.svg +753 -0
  857. data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_postorder.svg +750 -0
  858. data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_preorder.svg +750 -0
  859. data/vendor/local/share/gtk-doc/html/glib/annotation-glossary.html +81 -0
  860. data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +167 -0
  861. data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +307 -0
  862. data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +562 -0
  863. data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +357 -0
  864. data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +108 -0
  865. data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +119 -0
  866. data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +86 -0
  867. data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +189 -0
  868. data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +423 -0
  869. data/vendor/local/share/gtk-doc/html/glib/api-index-2-26.html +389 -0
  870. data/vendor/local/share/gtk-doc/html/glib/api-index-2-28.html +122 -0
  871. data/vendor/local/share/gtk-doc/html/glib/api-index-2-30.html +252 -0
  872. data/vendor/local/share/gtk-doc/html/glib/api-index-2-32.html +343 -0
  873. data/vendor/local/share/gtk-doc/html/glib/api-index-2-34.html +116 -0
  874. data/vendor/local/share/gtk-doc/html/glib/api-index-2-36.html +116 -0
  875. data/vendor/local/share/gtk-doc/html/glib/api-index-2-38.html +111 -0
  876. data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +399 -0
  877. data/vendor/local/share/gtk-doc/html/glib/api-index-2-40.html +158 -0
  878. data/vendor/local/share/gtk-doc/html/glib/api-index-2-42.html +35 -0
  879. data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +416 -0
  880. data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +157 -0
  881. data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +596 -0
  882. data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +9013 -0
  883. data/vendor/local/share/gtk-doc/html/glib/deprecated.html +47 -0
  884. data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
  885. data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +1130 -0
  886. data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +1242 -0
  887. data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +944 -0
  888. data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +614 -0
  889. data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +958 -0
  890. data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +440 -0
  891. data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +1155 -0
  892. data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2442 -0
  893. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +1513 -0
  894. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +2152 -0
  895. data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +540 -0
  896. data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1299 -0
  897. data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +2164 -0
  898. data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +644 -0
  899. data/vendor/local/share/gtk-doc/html/glib/glib-Data-HMACs.html +549 -0
  900. data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +662 -0
  901. data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2808 -0
  902. data/vendor/local/share/gtk-doc/html/glib/glib-Deprecated-Thread-APIs.html +2101 -0
  903. data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1860 -0
  904. data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1941 -0
  905. data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +664 -0
  906. data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1226 -0
  907. data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +2516 -0
  908. data/vendor/local/share/gtk-doc/html/glib/glib-GDateTime.html +2430 -0
  909. data/vendor/local/share/gtk-doc/html/glib/glib-GTimeZone.html +664 -0
  910. data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +6967 -0
  911. data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1842 -0
  912. data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +373 -0
  913. data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +2260 -0
  914. data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1817 -0
  915. data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +287 -0
  916. data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +814 -0
  917. data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2662 -0
  918. data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +3457 -0
  919. data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +1007 -0
  920. data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1878 -0
  921. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1375 -0
  922. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +625 -0
  923. data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +947 -0
  924. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1180 -0
  925. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +2274 -0
  926. data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1995 -0
  927. data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +236 -0
  928. data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +3551 -0
  929. data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +1059 -0
  930. data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +378 -0
  931. data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +775 -0
  932. data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +660 -0
  933. data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +2054 -0
  934. data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +302 -0
  935. data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1491 -0
  936. data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1560 -0
  937. data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +1165 -0
  938. data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +593 -0
  939. data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +374 -0
  940. data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +4052 -0
  941. data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1797 -0
  942. data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +3149 -0
  943. data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +5082 -0
  944. data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +774 -0
  945. data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3183 -0
  946. data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +319 -0
  947. data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +254 -0
  948. data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +309 -0
  949. data/vendor/local/share/gtk-doc/html/glib/glib-UNIX-specific-utilities-and-integration.html +618 -0
  950. data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +508 -0
  951. data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +4995 -0
  952. data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +483 -0
  953. data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +598 -0
  954. data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +585 -0
  955. data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
  956. data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +153 -0
  957. data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +145 -0
  958. data/vendor/local/share/gtk-doc/html/glib/glib-core.html +68 -0
  959. data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +165 -0
  960. data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +100 -0
  961. data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +57 -0
  962. data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +96 -0
  963. data/vendor/local/share/gtk-doc/html/glib/glib-programming.html +76 -0
  964. data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2217 -0
  965. data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +124 -0
  966. data/vendor/local/share/gtk-doc/html/glib/glib-running.html +295 -0
  967. data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +126 -0
  968. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2399 -0
  969. data/vendor/local/share/gtk-doc/html/glib/glib.html +72 -0
  970. data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +81 -0
  971. data/vendor/local/share/gtk-doc/html/glib/gtester.html +187 -0
  972. data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1338 -0
  973. data/vendor/local/share/gtk-doc/html/glib/gvariant-text.html +667 -0
  974. data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
  975. data/vendor/local/share/gtk-doc/html/glib/index.html +358 -0
  976. data/vendor/local/share/gtk-doc/html/glib/index.sgml +2782 -0
  977. data/vendor/local/share/gtk-doc/html/glib/left-insensitive.png +0 -0
  978. data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
  979. data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
  980. data/vendor/local/share/gtk-doc/html/glib/right-insensitive.png +0 -0
  981. data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
  982. data/vendor/local/share/gtk-doc/html/glib/style.css +476 -0
  983. data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
  984. data/vendor/local/share/gtk-doc/html/glib/up-insensitive.png +0 -0
  985. data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
  986. data/vendor/local/share/gtk-doc/html/gobject/GBinding.html +981 -0
  987. data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +814 -0
  988. data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +558 -0
  989. data/vendor/local/share/gtk-doc/html/gobject/annotation-glossary.html +76 -0
  990. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +80 -0
  991. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +50 -0
  992. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +46 -0
  993. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +43 -0
  994. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +35 -0
  995. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +43 -0
  996. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +68 -0
  997. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-26.html +196 -0
  998. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-28.html +42 -0
  999. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-30.html +65 -0
  1000. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-32.html +76 -0
  1001. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-34.html +58 -0
  1002. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-36.html +51 -0
  1003. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-38.html +68 -0
  1004. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +173 -0
  1005. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-40.html +35 -0
  1006. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-42.html +35 -0
  1007. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +39 -0
  1008. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +39 -0
  1009. data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +132 -0
  1010. data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2999 -0
  1011. data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
  1012. data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +290 -0
  1013. data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
  1014. data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
  1015. data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
  1016. data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +380 -0
  1017. data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +337 -0
  1018. data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
  1019. data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +677 -0
  1020. data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +3510 -0
  1021. data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +1110 -0
  1022. data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1937 -0
  1023. data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +1101 -0
  1024. data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +3395 -0
  1025. data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +7262 -0
  1026. data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +4119 -0
  1027. data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +6080 -0
  1028. data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +644 -0
  1029. data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +309 -0
  1030. data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
  1031. data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +392 -0
  1032. data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +128 -0
  1033. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +838 -0
  1034. data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +141 -0
  1035. data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +288 -0
  1036. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +378 -0
  1037. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
  1038. data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
  1039. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +98 -0
  1040. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +88 -0
  1041. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +172 -0
  1042. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +117 -0
  1043. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +250 -0
  1044. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +270 -0
  1045. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +137 -0
  1046. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-override.html +133 -0
  1047. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-prerequisite.html +123 -0
  1048. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +153 -0
  1049. data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +149 -0
  1050. data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
  1051. data/vendor/local/share/gtk-doc/html/gobject/index.html +201 -0
  1052. data/vendor/local/share/gtk-doc/html/gobject/index.sgml +869 -0
  1053. data/vendor/local/share/gtk-doc/html/gobject/left-insensitive.png +0 -0
  1054. data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
  1055. data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
  1056. data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
  1057. data/vendor/local/share/gtk-doc/html/gobject/pt02.html +67 -0
  1058. data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
  1059. data/vendor/local/share/gtk-doc/html/gobject/right-insensitive.png +0 -0
  1060. data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
  1061. data/vendor/local/share/gtk-doc/html/gobject/rn01.html +85 -0
  1062. data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
  1063. data/vendor/local/share/gtk-doc/html/gobject/signal.html +378 -0
  1064. data/vendor/local/share/gtk-doc/html/gobject/style.css +476 -0
  1065. data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
  1066. data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
  1067. data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
  1068. data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +48 -0
  1069. data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
  1070. data/vendor/local/share/gtk-doc/html/gobject/up-insensitive.png +0 -0
  1071. data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
  1072. data/vendor/local/share/info/autosprintf.info +133 -0
  1073. data/vendor/local/share/info/dir +43 -0
  1074. data/vendor/local/share/info/gmp.info +181 -0
  1075. data/vendor/local/share/info/gmp.info-1 +7073 -0
  1076. data/vendor/local/share/info/gmp.info-2 +3865 -0
  1077. data/vendor/local/share/info/gnutls-client-server-use-case.png +0 -0
  1078. data/vendor/local/share/info/gnutls-guile.info +1589 -0
  1079. data/vendor/local/share/info/gnutls-handshake-sequence.png +0 -0
  1080. data/vendor/local/share/info/gnutls-handshake-state.png +0 -0
  1081. data/vendor/local/share/info/gnutls-internals.png +0 -0
  1082. data/vendor/local/share/info/gnutls-layers.png +0 -0
  1083. data/vendor/local/share/info/gnutls-logo.png +0 -0
  1084. data/vendor/local/share/info/gnutls-modauth.png +0 -0
  1085. data/vendor/local/share/info/gnutls-pgp.png +0 -0
  1086. data/vendor/local/share/info/gnutls-x509.png +0 -0
  1087. data/vendor/local/share/info/gnutls.info +1371 -0
  1088. data/vendor/local/share/info/gnutls.info-1 +7371 -0
  1089. data/vendor/local/share/info/gnutls.info-2 +7842 -0
  1090. data/vendor/local/share/info/gnutls.info-3 +11715 -0
  1091. data/vendor/local/share/info/gnutls.info-4 +6737 -0
  1092. data/vendor/local/share/info/gnutls.info-5 +2308 -0
  1093. data/vendor/local/share/info/libffi.info +765 -0
  1094. data/vendor/local/share/info/pkcs11-vision.png +0 -0
  1095. data/vendor/local/share/license/gettext/AUTHORS +2 -0
  1096. data/vendor/local/share/license/gettext/COPYING +13 -0
  1097. data/vendor/local/share/license/glib-networking/AUTHORS +0 -0
  1098. data/vendor/local/share/license/glib-networking/COPYING +481 -0
  1099. data/vendor/local/share/license/glib/AUTHORS +40 -0
  1100. data/vendor/local/share/license/glib/COPYING +482 -0
  1101. data/vendor/local/share/license/gmp/AUTHORS +100 -0
  1102. data/vendor/local/share/license/gmp/COPYING +674 -0
  1103. data/vendor/local/share/license/gnutls/AUTHORS +92 -0
  1104. data/vendor/local/share/license/gnutls/COPYING +674 -0
  1105. data/vendor/local/share/license/libiconv/AUTHORS +1 -0
  1106. data/vendor/local/share/license/libiconv/COPYING +674 -0
  1107. data/vendor/local/share/license/libiconv/COPYING.LIB +482 -0
  1108. data/vendor/local/share/license/nettle/AUTHORS +1 -0
  1109. data/vendor/local/share/license/nettle/COPYING.LIB +510 -0
  1110. data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
  1111. data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
  1112. data/vendor/local/share/locale/an/LC_MESSAGES/glib-networking.mo +0 -0
  1113. data/vendor/local/share/locale/an/LC_MESSAGES/glib20.mo +0 -0
  1114. data/vendor/local/share/locale/ar/LC_MESSAGES/glib-networking.mo +0 -0
  1115. data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
  1116. data/vendor/local/share/locale/as/LC_MESSAGES/glib-networking.mo +0 -0
  1117. data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
  1118. data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
  1119. data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
  1120. data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
  1121. data/vendor/local/share/locale/be/LC_MESSAGES/glib-networking.mo +0 -0
  1122. data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
  1123. data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
  1124. data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
  1125. data/vendor/local/share/locale/bg/LC_MESSAGES/glib-networking.mo +0 -0
  1126. data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
  1127. data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
  1128. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib-networking.mo +0 -0
  1129. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
  1130. data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
  1131. data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
  1132. data/vendor/local/share/locale/ca/LC_MESSAGES/glib-networking.mo +0 -0
  1133. data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
  1134. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib-networking.mo +0 -0
  1135. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
  1136. data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
  1137. data/vendor/local/share/locale/cs/LC_MESSAGES/glib-networking.mo +0 -0
  1138. data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
  1139. data/vendor/local/share/locale/cs/LC_MESSAGES/gnutls.mo +0 -0
  1140. data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
  1141. data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
  1142. data/vendor/local/share/locale/da/LC_MESSAGES/glib-networking.mo +0 -0
  1143. data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
  1144. data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
  1145. data/vendor/local/share/locale/de/LC_MESSAGES/glib-networking.mo +0 -0
  1146. data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
  1147. data/vendor/local/share/locale/de/LC_MESSAGES/gnutls.mo +0 -0
  1148. data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
  1149. data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
  1150. data/vendor/local/share/locale/el/LC_MESSAGES/glib-networking.mo +0 -0
  1151. data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
  1152. data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
  1153. data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gnutls.mo +0 -0
  1154. data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
  1155. data/vendor/local/share/locale/en@quot/LC_MESSAGES/gnutls.mo +0 -0
  1156. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
  1157. data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib-networking.mo +0 -0
  1158. data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
  1159. data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib-networking.mo +0 -0
  1160. data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
  1161. data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
  1162. data/vendor/local/share/locale/eo/LC_MESSAGES/glib-networking.mo +0 -0
  1163. data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
  1164. data/vendor/local/share/locale/eo/LC_MESSAGES/gnutls.mo +0 -0
  1165. data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
  1166. data/vendor/local/share/locale/es/LC_MESSAGES/glib-networking.mo +0 -0
  1167. data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
  1168. data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
  1169. data/vendor/local/share/locale/et/LC_MESSAGES/glib-networking.mo +0 -0
  1170. data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
  1171. data/vendor/local/share/locale/eu/LC_MESSAGES/glib-networking.mo +0 -0
  1172. data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
  1173. data/vendor/local/share/locale/fa/LC_MESSAGES/glib-networking.mo +0 -0
  1174. data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
  1175. data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
  1176. data/vendor/local/share/locale/fi/LC_MESSAGES/glib-networking.mo +0 -0
  1177. data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
  1178. data/vendor/local/share/locale/fi/LC_MESSAGES/gnutls.mo +0 -0
  1179. data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
  1180. data/vendor/local/share/locale/fr/LC_MESSAGES/glib-networking.mo +0 -0
  1181. data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
  1182. data/vendor/local/share/locale/fr/LC_MESSAGES/gnutls.mo +0 -0
  1183. data/vendor/local/share/locale/fur/LC_MESSAGES/glib-networking.mo +0 -0
  1184. data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
  1185. data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
  1186. data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
  1187. data/vendor/local/share/locale/gl/LC_MESSAGES/glib-networking.mo +0 -0
  1188. data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
  1189. data/vendor/local/share/locale/gu/LC_MESSAGES/glib-networking.mo +0 -0
  1190. data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
  1191. data/vendor/local/share/locale/he/LC_MESSAGES/glib-networking.mo +0 -0
  1192. data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
  1193. data/vendor/local/share/locale/hi/LC_MESSAGES/glib-networking.mo +0 -0
  1194. data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
  1195. data/vendor/local/share/locale/hr/LC_MESSAGES/gettext-runtime.mo +0 -0
  1196. data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
  1197. data/vendor/local/share/locale/hu/LC_MESSAGES/gettext-runtime.mo +0 -0
  1198. data/vendor/local/share/locale/hu/LC_MESSAGES/glib-networking.mo +0 -0
  1199. data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
  1200. data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
  1201. data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
  1202. data/vendor/local/share/locale/id/LC_MESSAGES/glib-networking.mo +0 -0
  1203. data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
  1204. data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
  1205. data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
  1206. data/vendor/local/share/locale/it/LC_MESSAGES/glib-networking.mo +0 -0
  1207. data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
  1208. data/vendor/local/share/locale/it/LC_MESSAGES/gnutls.mo +0 -0
  1209. data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
  1210. data/vendor/local/share/locale/ja/LC_MESSAGES/glib-networking.mo +0 -0
  1211. data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
  1212. data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
  1213. data/vendor/local/share/locale/kk/LC_MESSAGES/glib-networking.mo +0 -0
  1214. data/vendor/local/share/locale/kk/LC_MESSAGES/glib20.mo +0 -0
  1215. data/vendor/local/share/locale/km/LC_MESSAGES/glib-networking.mo +0 -0
  1216. data/vendor/local/share/locale/kn/LC_MESSAGES/glib-networking.mo +0 -0
  1217. data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
  1218. data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
  1219. data/vendor/local/share/locale/ko/LC_MESSAGES/glib-networking.mo +0 -0
  1220. data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
  1221. data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
  1222. data/vendor/local/share/locale/locale.alias +75 -0
  1223. data/vendor/local/share/locale/lt/LC_MESSAGES/glib-networking.mo +0 -0
  1224. data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
  1225. data/vendor/local/share/locale/lv/LC_MESSAGES/glib-networking.mo +0 -0
  1226. data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
  1227. data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
  1228. data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
  1229. data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
  1230. data/vendor/local/share/locale/ml/LC_MESSAGES/glib-networking.mo +0 -0
  1231. data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
  1232. data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
  1233. data/vendor/local/share/locale/mr/LC_MESSAGES/glib-networking.mo +0 -0
  1234. data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
  1235. data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
  1236. data/vendor/local/share/locale/ms/LC_MESSAGES/gnutls.mo +0 -0
  1237. data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
  1238. data/vendor/local/share/locale/nb/LC_MESSAGES/glib-networking.mo +0 -0
  1239. data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
  1240. data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
  1241. data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
  1242. data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
  1243. data/vendor/local/share/locale/nl/LC_MESSAGES/glib-networking.mo +0 -0
  1244. data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
  1245. data/vendor/local/share/locale/nl/LC_MESSAGES/gnutls.mo +0 -0
  1246. data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
  1247. data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
  1248. data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
  1249. data/vendor/local/share/locale/or/LC_MESSAGES/glib-networking.mo +0 -0
  1250. data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
  1251. data/vendor/local/share/locale/pa/LC_MESSAGES/glib-networking.mo +0 -0
  1252. data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
  1253. data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
  1254. data/vendor/local/share/locale/pl/LC_MESSAGES/glib-networking.mo +0 -0
  1255. data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
  1256. data/vendor/local/share/locale/pl/LC_MESSAGES/gnutls.mo +0 -0
  1257. data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
  1258. data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
  1259. data/vendor/local/share/locale/pt/LC_MESSAGES/glib-networking.mo +0 -0
  1260. data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
  1261. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
  1262. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib-networking.mo +0 -0
  1263. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
  1264. data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
  1265. data/vendor/local/share/locale/ro/LC_MESSAGES/glib-networking.mo +0 -0
  1266. data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
  1267. data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
  1268. data/vendor/local/share/locale/ru/LC_MESSAGES/glib-networking.mo +0 -0
  1269. data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
  1270. data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
  1271. data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
  1272. data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
  1273. data/vendor/local/share/locale/sk/LC_MESSAGES/glib-networking.mo +0 -0
  1274. data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
  1275. data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
  1276. data/vendor/local/share/locale/sl/LC_MESSAGES/glib-networking.mo +0 -0
  1277. data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
  1278. data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
  1279. data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
  1280. data/vendor/local/share/locale/sr/LC_MESSAGES/glib-networking.mo +0 -0
  1281. data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
  1282. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
  1283. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib-networking.mo +0 -0
  1284. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
  1285. data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
  1286. data/vendor/local/share/locale/sv/LC_MESSAGES/glib-networking.mo +0 -0
  1287. data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
  1288. data/vendor/local/share/locale/sv/LC_MESSAGES/gnutls.mo +0 -0
  1289. data/vendor/local/share/locale/ta/LC_MESSAGES/glib-networking.mo +0 -0
  1290. data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
  1291. data/vendor/local/share/locale/te/LC_MESSAGES/glib-networking.mo +0 -0
  1292. data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
  1293. data/vendor/local/share/locale/tg/LC_MESSAGES/glib-networking.mo +0 -0
  1294. data/vendor/local/share/locale/tg/LC_MESSAGES/glib20.mo +0 -0
  1295. data/vendor/local/share/locale/th/LC_MESSAGES/glib-networking.mo +0 -0
  1296. data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
  1297. data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
  1298. data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
  1299. data/vendor/local/share/locale/tr/LC_MESSAGES/glib-networking.mo +0 -0
  1300. data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
  1301. data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
  1302. data/vendor/local/share/locale/ug/LC_MESSAGES/glib-networking.mo +0 -0
  1303. data/vendor/local/share/locale/ug/LC_MESSAGES/glib20.mo +0 -0
  1304. data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
  1305. data/vendor/local/share/locale/uk/LC_MESSAGES/glib-networking.mo +0 -0
  1306. data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
  1307. data/vendor/local/share/locale/uk/LC_MESSAGES/gnutls.mo +0 -0
  1308. data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
  1309. data/vendor/local/share/locale/vi/LC_MESSAGES/glib-networking.mo +0 -0
  1310. data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
  1311. data/vendor/local/share/locale/vi/LC_MESSAGES/gnutls.mo +0 -0
  1312. data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
  1313. data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
  1314. data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
  1315. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
  1316. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib-networking.mo +0 -0
  1317. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
  1318. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gnutls.mo +0 -0
  1319. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
  1320. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib-networking.mo +0 -0
  1321. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
  1322. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
  1323. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib-networking.mo +0 -0
  1324. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
  1325. data/vendor/local/share/man/man1/certtool.1 +741 -0
  1326. data/vendor/local/share/man/man1/envsubst.1 +54 -0
  1327. data/vendor/local/share/man/man1/gettext.1 +69 -0
  1328. data/vendor/local/share/man/man1/gnutls-cli-debug.1 +165 -0
  1329. data/vendor/local/share/man/man1/gnutls-cli.1 +420 -0
  1330. data/vendor/local/share/man/man1/gnutls-serv.1 +453 -0
  1331. data/vendor/local/share/man/man1/iconv.1 +108 -0
  1332. data/vendor/local/share/man/man1/ngettext.1 +68 -0
  1333. data/vendor/local/share/man/man1/ocsptool.1 +335 -0
  1334. data/vendor/local/share/man/man1/p11tool.1 +320 -0
  1335. data/vendor/local/share/man/man1/psktool.1 +129 -0
  1336. data/vendor/local/share/man/man1/srptool.1 +164 -0
  1337. data/vendor/local/share/man/man1/tpmtool.1 +223 -0
  1338. data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
  1339. data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
  1340. data/vendor/local/share/man/man3/dcgettext.3 +1 -0
  1341. data/vendor/local/share/man/man3/dcngettext.3 +1 -0
  1342. data/vendor/local/share/man/man3/dgettext.3 +1 -0
  1343. data/vendor/local/share/man/man3/dngettext.3 +1 -0
  1344. data/vendor/local/share/man/man3/ffi.3 +41 -0
  1345. data/vendor/local/share/man/man3/ffi_call.3 +103 -0
  1346. data/vendor/local/share/man/man3/ffi_prep_cif.3 +68 -0
  1347. data/vendor/local/share/man/man3/ffi_prep_cif_var.3 +73 -0
  1348. data/vendor/local/share/man/man3/gettext.3 +99 -0
  1349. data/vendor/local/share/man/man3/gnutls_alert_get.3 +40 -0
  1350. data/vendor/local/share/man/man3/gnutls_alert_get_name.3 +36 -0
  1351. data/vendor/local/share/man/man3/gnutls_alert_get_strname.3 +37 -0
  1352. data/vendor/local/share/man/man3/gnutls_alert_send.3 +47 -0
  1353. data/vendor/local/share/man/man3/gnutls_alert_send_appropriate.3 +46 -0
  1354. data/vendor/local/share/man/man3/gnutls_alpn_get_selected_protocol.3 +42 -0
  1355. data/vendor/local/share/man/man3/gnutls_alpn_set_protocols.3 +48 -0
  1356. data/vendor/local/share/man/man3/gnutls_anon_allocate_client_credentials.3 +36 -0
  1357. data/vendor/local/share/man/man3/gnutls_anon_allocate_server_credentials.3 +36 -0
  1358. data/vendor/local/share/man/man3/gnutls_anon_free_client_credentials.3 +34 -0
  1359. data/vendor/local/share/man/man3/gnutls_anon_free_server_credentials.3 +34 -0
  1360. data/vendor/local/share/man/man3/gnutls_anon_set_params_function.3 +37 -0
  1361. data/vendor/local/share/man/man3/gnutls_anon_set_server_dh_params.3 +37 -0
  1362. data/vendor/local/share/man/man3/gnutls_anon_set_server_params_function.3 +37 -0
  1363. data/vendor/local/share/man/man3/gnutls_auth_client_get_type.3 +38 -0
  1364. data/vendor/local/share/man/man3/gnutls_auth_get_type.3 +42 -0
  1365. data/vendor/local/share/man/man3/gnutls_auth_server_get_type.3 +38 -0
  1366. data/vendor/local/share/man/man3/gnutls_bye.3 +60 -0
  1367. data/vendor/local/share/man/man3/gnutls_certificate_activation_time_peers.3 +38 -0
  1368. data/vendor/local/share/man/man3/gnutls_certificate_allocate_credentials.3 +36 -0
  1369. data/vendor/local/share/man/man3/gnutls_certificate_client_get_request_status.3 +37 -0
  1370. data/vendor/local/share/man/man3/gnutls_certificate_client_set_retrieve_function.3 +62 -0
  1371. data/vendor/local/share/man/man3/gnutls_certificate_expiration_time_peers.3 +37 -0
  1372. data/vendor/local/share/man/man3/gnutls_certificate_free_ca_names.3 +41 -0
  1373. data/vendor/local/share/man/man3/gnutls_certificate_free_cas.3 +36 -0
  1374. data/vendor/local/share/man/man3/gnutls_certificate_free_credentials.3 +38 -0
  1375. data/vendor/local/share/man/man3/gnutls_certificate_free_crls.3 +34 -0
  1376. data/vendor/local/share/man/man3/gnutls_certificate_free_keys.3 +35 -0
  1377. data/vendor/local/share/man/man3/gnutls_certificate_get_crt_raw.3 +48 -0
  1378. data/vendor/local/share/man/man3/gnutls_certificate_get_issuer.3 +44 -0
  1379. data/vendor/local/share/man/man3/gnutls_certificate_get_ours.3 +39 -0
  1380. data/vendor/local/share/man/man3/gnutls_certificate_get_peers.3 +46 -0
  1381. data/vendor/local/share/man/man3/gnutls_certificate_get_peers_subkey_id.3 +41 -0
  1382. data/vendor/local/share/man/man3/gnutls_certificate_send_x509_rdn_sequence.3 +42 -0
  1383. data/vendor/local/share/man/man3/gnutls_certificate_server_set_request.3 +39 -0
  1384. data/vendor/local/share/man/man3/gnutls_certificate_server_set_retrieve_function.3 +50 -0
  1385. data/vendor/local/share/man/man3/gnutls_certificate_set_dh_params.3 +39 -0
  1386. data/vendor/local/share/man/man3/gnutls_certificate_set_key.3 +56 -0
  1387. data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_file.3 +47 -0
  1388. data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_function.3 +56 -0
  1389. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key.3 +47 -0
  1390. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file.3 +43 -0
  1391. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file2.3 +51 -0
  1392. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem.3 +43 -0
  1393. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem2.3 +51 -0
  1394. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_file.3 +43 -0
  1395. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_mem.3 +45 -0
  1396. data/vendor/local/share/man/man3/gnutls_certificate_set_params_function.3 +37 -0
  1397. data/vendor/local/share/man/man3/gnutls_certificate_set_pin_function.3 +44 -0
  1398. data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function.3 +65 -0
  1399. data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function2.3 +68 -0
  1400. data/vendor/local/share/man/man3/gnutls_certificate_set_rsa_export_params.3 +37 -0
  1401. data/vendor/local/share/man/man3/gnutls_certificate_set_trust_list.3 +45 -0
  1402. data/vendor/local/share/man/man3/gnutls_certificate_set_verify_flags.3 +37 -0
  1403. data/vendor/local/share/man/man3/gnutls_certificate_set_verify_function.3 +51 -0
  1404. data/vendor/local/share/man/man3/gnutls_certificate_set_verify_limits.3 +40 -0
  1405. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl.3 +45 -0
  1406. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_file.3 +43 -0
  1407. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_mem.3 +43 -0
  1408. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key.3 +51 -0
  1409. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file.3 +58 -0
  1410. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file2.3 +62 -0
  1411. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem.3 +54 -0
  1412. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem2.3 +58 -0
  1413. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_file.3 +63 -0
  1414. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_mem.3 +64 -0
  1415. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_system_trust.3 +42 -0
  1416. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust.3 +50 -0
  1417. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_file.3 +52 -0
  1418. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_mem.3 +48 -0
  1419. data/vendor/local/share/man/man3/gnutls_certificate_type_get.3 +37 -0
  1420. data/vendor/local/share/man/man3/gnutls_certificate_type_get_id.3 +36 -0
  1421. data/vendor/local/share/man/man3/gnutls_certificate_type_get_name.3 +36 -0
  1422. data/vendor/local/share/man/man3/gnutls_certificate_type_list.3 +36 -0
  1423. data/vendor/local/share/man/man3/gnutls_certificate_type_set_priority.3 +42 -0
  1424. data/vendor/local/share/man/man3/gnutls_certificate_verification_status_print.3 +47 -0
  1425. data/vendor/local/share/man/man3/gnutls_certificate_verify_peers2.3 +51 -0
  1426. data/vendor/local/share/man/man3/gnutls_certificate_verify_peers3.3 +55 -0
  1427. data/vendor/local/share/man/man3/gnutls_check_version.3 +41 -0
  1428. data/vendor/local/share/man/man3/gnutls_cipher_add_auth.3 +44 -0
  1429. data/vendor/local/share/man/man3/gnutls_cipher_decrypt.3 +45 -0
  1430. data/vendor/local/share/man/man3/gnutls_cipher_decrypt2.3 +49 -0
  1431. data/vendor/local/share/man/man3/gnutls_cipher_deinit.3 +36 -0
  1432. data/vendor/local/share/man/man3/gnutls_cipher_encrypt.3 +42 -0
  1433. data/vendor/local/share/man/man3/gnutls_cipher_encrypt2.3 +46 -0
  1434. data/vendor/local/share/man/man3/gnutls_cipher_get.3 +36 -0
  1435. data/vendor/local/share/man/man3/gnutls_cipher_get_block_size.3 +35 -0
  1436. data/vendor/local/share/man/man3/gnutls_cipher_get_id.3 +36 -0
  1437. data/vendor/local/share/man/man3/gnutls_cipher_get_iv_size.3 +37 -0
  1438. data/vendor/local/share/man/man3/gnutls_cipher_get_key_size.3 +36 -0
  1439. data/vendor/local/share/man/man3/gnutls_cipher_get_name.3 +36 -0
  1440. data/vendor/local/share/man/man3/gnutls_cipher_get_tag_size.3 +35 -0
  1441. data/vendor/local/share/man/man3/gnutls_cipher_init.3 +46 -0
  1442. data/vendor/local/share/man/man3/gnutls_cipher_list.3 +41 -0
  1443. data/vendor/local/share/man/man3/gnutls_cipher_set_iv.3 +40 -0
  1444. data/vendor/local/share/man/man3/gnutls_cipher_set_priority.3 +41 -0
  1445. data/vendor/local/share/man/man3/gnutls_cipher_suite_get_name.3 +41 -0
  1446. data/vendor/local/share/man/man3/gnutls_cipher_suite_info.3 +50 -0
  1447. data/vendor/local/share/man/man3/gnutls_cipher_tag.3 +43 -0
  1448. data/vendor/local/share/man/man3/gnutls_compression_get.3 +36 -0
  1449. data/vendor/local/share/man/man3/gnutls_compression_get_id.3 +36 -0
  1450. data/vendor/local/share/man/man3/gnutls_compression_get_name.3 +36 -0
  1451. data/vendor/local/share/man/man3/gnutls_compression_list.3 +36 -0
  1452. data/vendor/local/share/man/man3/gnutls_compression_set_priority.3 +46 -0
  1453. data/vendor/local/share/man/man3/gnutls_credentials_clear.3 +33 -0
  1454. data/vendor/local/share/man/man3/gnutls_credentials_set.3 +59 -0
  1455. data/vendor/local/share/man/man3/gnutls_db_check_entry.3 +38 -0
  1456. data/vendor/local/share/man/man3/gnutls_db_check_entry_time.3 +36 -0
  1457. data/vendor/local/share/man/man3/gnutls_db_get_default_cache_expiration.3 +35 -0
  1458. data/vendor/local/share/man/man3/gnutls_db_get_ptr.3 +36 -0
  1459. data/vendor/local/share/man/man3/gnutls_db_remove_session.3 +39 -0
  1460. data/vendor/local/share/man/man3/gnutls_db_set_cache_expiration.3 +36 -0
  1461. data/vendor/local/share/man/man3/gnutls_db_set_ptr.3 +36 -0
  1462. data/vendor/local/share/man/man3/gnutls_db_set_remove_function.3 +39 -0
  1463. data/vendor/local/share/man/man3/gnutls_db_set_retrieve_function.3 +44 -0
  1464. data/vendor/local/share/man/man3/gnutls_db_set_store_function.3 +39 -0
  1465. data/vendor/local/share/man/man3/gnutls_deinit.3 +35 -0
  1466. data/vendor/local/share/man/man3/gnutls_dh_get_group.3 +44 -0
  1467. data/vendor/local/share/man/man3/gnutls_dh_get_peers_public_bits.3 +37 -0
  1468. data/vendor/local/share/man/man3/gnutls_dh_get_prime_bits.3 +41 -0
  1469. data/vendor/local/share/man/man3/gnutls_dh_get_pubkey.3 +41 -0
  1470. data/vendor/local/share/man/man3/gnutls_dh_get_secret_bits.3 +38 -0
  1471. data/vendor/local/share/man/man3/gnutls_dh_params_cpy.3 +39 -0
  1472. data/vendor/local/share/man/man3/gnutls_dh_params_deinit.3 +33 -0
  1473. data/vendor/local/share/man/man3/gnutls_dh_params_export2_pkcs3.3 +47 -0
  1474. data/vendor/local/share/man/man3/gnutls_dh_params_export_pkcs3.3 +48 -0
  1475. data/vendor/local/share/man/man3/gnutls_dh_params_export_raw.3 +45 -0
  1476. data/vendor/local/share/man/man3/gnutls_dh_params_generate2.3 +47 -0
  1477. data/vendor/local/share/man/man3/gnutls_dh_params_import_pkcs3.3 +44 -0
  1478. data/vendor/local/share/man/man3/gnutls_dh_params_import_raw.3 +42 -0
  1479. data/vendor/local/share/man/man3/gnutls_dh_params_init.3 +36 -0
  1480. data/vendor/local/share/man/man3/gnutls_dh_set_prime_bits.3 +52 -0
  1481. data/vendor/local/share/man/man3/gnutls_digest_get_id.3 +37 -0
  1482. data/vendor/local/share/man/man3/gnutls_digest_get_name.3 +36 -0
  1483. data/vendor/local/share/man/man3/gnutls_digest_list.3 +38 -0
  1484. data/vendor/local/share/man/man3/gnutls_dtls_cookie_send.3 +56 -0
  1485. data/vendor/local/share/man/man3/gnutls_dtls_cookie_verify.3 +52 -0
  1486. data/vendor/local/share/man/man3/gnutls_dtls_get_data_mtu.3 +39 -0
  1487. data/vendor/local/share/man/man3/gnutls_dtls_get_mtu.3 +40 -0
  1488. data/vendor/local/share/man/man3/gnutls_dtls_get_timeout.3 +41 -0
  1489. data/vendor/local/share/man/man3/gnutls_dtls_prestate_set.3 +42 -0
  1490. data/vendor/local/share/man/man3/gnutls_dtls_set_data_mtu.3 +48 -0
  1491. data/vendor/local/share/man/man3/gnutls_dtls_set_mtu.3 +41 -0
  1492. data/vendor/local/share/man/man3/gnutls_dtls_set_timeouts.3 +51 -0
  1493. data/vendor/local/share/man/man3/gnutls_ecc_curve_get.3 +39 -0
  1494. data/vendor/local/share/man/man3/gnutls_ecc_curve_get_name.3 +38 -0
  1495. data/vendor/local/share/man/man3/gnutls_ecc_curve_get_size.3 +37 -0
  1496. data/vendor/local/share/man/man3/gnutls_ecc_curve_list.3 +38 -0
  1497. data/vendor/local/share/man/man3/gnutls_error_is_fatal.3 +46 -0
  1498. data/vendor/local/share/man/man3/gnutls_error_to_alert.3 +44 -0
  1499. data/vendor/local/share/man/man3/gnutls_est_record_overhead_size.3 +49 -0
  1500. data/vendor/local/share/man/man3/gnutls_fingerprint.3 +50 -0
  1501. data/vendor/local/share/man/man3/gnutls_global_deinit.3 +37 -0
  1502. data/vendor/local/share/man/man3/gnutls_global_init.3 +54 -0
  1503. data/vendor/local/share/man/man3/gnutls_global_set_audit_log_function.3 +42 -0
  1504. data/vendor/local/share/man/man3/gnutls_global_set_log_function.3 +39 -0
  1505. data/vendor/local/share/man/man3/gnutls_global_set_log_level.3 +38 -0
  1506. data/vendor/local/share/man/man3/gnutls_global_set_mem_functions.3 +48 -0
  1507. data/vendor/local/share/man/man3/gnutls_global_set_mutex.3 +47 -0
  1508. data/vendor/local/share/man/man3/gnutls_global_set_time_function.3 +37 -0
  1509. data/vendor/local/share/man/man3/gnutls_handshake.3 +61 -0
  1510. data/vendor/local/share/man/man3/gnutls_handshake_description_get_name.3 +36 -0
  1511. data/vendor/local/share/man/man3/gnutls_handshake_get_last_in.3 +41 -0
  1512. data/vendor/local/share/man/man3/gnutls_handshake_get_last_out.3 +41 -0
  1513. data/vendor/local/share/man/man3/gnutls_handshake_set_hook_function.3 +55 -0
  1514. data/vendor/local/share/man/man3/gnutls_handshake_set_max_packet_length.3 +42 -0
  1515. data/vendor/local/share/man/man3/gnutls_handshake_set_post_client_hello_function.3 +49 -0
  1516. data/vendor/local/share/man/man3/gnutls_handshake_set_private_extensions.3 +42 -0
  1517. data/vendor/local/share/man/man3/gnutls_handshake_set_random.3 +46 -0
  1518. data/vendor/local/share/man/man3/gnutls_handshake_set_timeout.3 +41 -0
  1519. data/vendor/local/share/man/man3/gnutls_hash.3 +42 -0
  1520. data/vendor/local/share/man/man3/gnutls_hash_deinit.3 +38 -0
  1521. data/vendor/local/share/man/man3/gnutls_hash_fast.3 +44 -0
  1522. data/vendor/local/share/man/man3/gnutls_hash_get_len.3 +38 -0
  1523. data/vendor/local/share/man/man3/gnutls_hash_init.3 +42 -0
  1524. data/vendor/local/share/man/man3/gnutls_hash_output.3 +38 -0
  1525. data/vendor/local/share/man/man3/gnutls_heartbeat_allowed.3 +40 -0
  1526. data/vendor/local/share/man/man3/gnutls_heartbeat_enable.3 +42 -0
  1527. data/vendor/local/share/man/man3/gnutls_heartbeat_get_timeout.3 +41 -0
  1528. data/vendor/local/share/man/man3/gnutls_heartbeat_ping.3 +48 -0
  1529. data/vendor/local/share/man/man3/gnutls_heartbeat_pong.3 +39 -0
  1530. data/vendor/local/share/man/man3/gnutls_heartbeat_set_timeouts.3 +46 -0
  1531. data/vendor/local/share/man/man3/gnutls_hex2bin.3 +44 -0
  1532. data/vendor/local/share/man/man3/gnutls_hex_decode.3 +43 -0
  1533. data/vendor/local/share/man/man3/gnutls_hex_encode.3 +43 -0
  1534. data/vendor/local/share/man/man3/gnutls_hmac.3 +42 -0
  1535. data/vendor/local/share/man/man3/gnutls_hmac_deinit.3 +38 -0
  1536. data/vendor/local/share/man/man3/gnutls_hmac_fast.3 +48 -0
  1537. data/vendor/local/share/man/man3/gnutls_hmac_get_len.3 +38 -0
  1538. data/vendor/local/share/man/man3/gnutls_hmac_init.3 +49 -0
  1539. data/vendor/local/share/man/man3/gnutls_hmac_output.3 +38 -0
  1540. data/vendor/local/share/man/man3/gnutls_hmac_set_nonce.3 +39 -0
  1541. data/vendor/local/share/man/man3/gnutls_init.3 +54 -0
  1542. data/vendor/local/share/man/man3/gnutls_key_generate.3 +41 -0
  1543. data/vendor/local/share/man/man3/gnutls_kx_get.3 +36 -0
  1544. data/vendor/local/share/man/man3/gnutls_kx_get_id.3 +37 -0
  1545. data/vendor/local/share/man/man3/gnutls_kx_get_name.3 +36 -0
  1546. data/vendor/local/share/man/man3/gnutls_kx_list.3 +38 -0
  1547. data/vendor/local/share/man/man3/gnutls_kx_set_priority.3 +42 -0
  1548. data/vendor/local/share/man/man3/gnutls_load_file.3 +42 -0
  1549. data/vendor/local/share/man/man3/gnutls_mac_get.3 +36 -0
  1550. data/vendor/local/share/man/man3/gnutls_mac_get_id.3 +37 -0
  1551. data/vendor/local/share/man/man3/gnutls_mac_get_key_size.3 +36 -0
  1552. data/vendor/local/share/man/man3/gnutls_mac_get_name.3 +36 -0
  1553. data/vendor/local/share/man/man3/gnutls_mac_get_nonce_size.3 +37 -0
  1554. data/vendor/local/share/man/man3/gnutls_mac_list.3 +38 -0
  1555. data/vendor/local/share/man/man3/gnutls_mac_set_priority.3 +42 -0
  1556. data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert.3 +46 -0
  1557. data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert_id.3 +57 -0
  1558. data/vendor/local/share/man/man3/gnutls_ocsp_req_deinit.3 +33 -0
  1559. data/vendor/local/share/man/man3/gnutls_ocsp_req_export.3 +38 -0
  1560. data/vendor/local/share/man/man3/gnutls_ocsp_req_get_cert_id.3 +61 -0
  1561. data/vendor/local/share/man/man3/gnutls_ocsp_req_get_extension.3 +54 -0
  1562. data/vendor/local/share/man/man3/gnutls_ocsp_req_get_nonce.3 +43 -0
  1563. data/vendor/local/share/man/man3/gnutls_ocsp_req_get_version.3 +36 -0
  1564. data/vendor/local/share/man/man3/gnutls_ocsp_req_import.3 +40 -0
  1565. data/vendor/local/share/man/man3/gnutls_ocsp_req_init.3 +36 -0
  1566. data/vendor/local/share/man/man3/gnutls_ocsp_req_print.3 +46 -0
  1567. data/vendor/local/share/man/man3/gnutls_ocsp_req_randomize_nonce.3 +37 -0
  1568. data/vendor/local/share/man/man3/gnutls_ocsp_req_set_extension.3 +44 -0
  1569. data/vendor/local/share/man/man3/gnutls_ocsp_req_set_nonce.3 +42 -0
  1570. data/vendor/local/share/man/man3/gnutls_ocsp_resp_check_crt.3 +43 -0
  1571. data/vendor/local/share/man/man3/gnutls_ocsp_resp_deinit.3 +33 -0
  1572. data/vendor/local/share/man/man3/gnutls_ocsp_resp_export.3 +38 -0
  1573. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_certs.3 +51 -0
  1574. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_extension.3 +54 -0
  1575. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_nonce.3 +44 -0
  1576. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_produced.3 +36 -0
  1577. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_responder.3 +44 -0
  1578. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_response.3 +49 -0
  1579. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature.3 +38 -0
  1580. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature_algorithm.3 +38 -0
  1581. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_single.3 +64 -0
  1582. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_status.3 +37 -0
  1583. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_version.3 +37 -0
  1584. data/vendor/local/share/man/man3/gnutls_ocsp_resp_import.3 +40 -0
  1585. data/vendor/local/share/man/man3/gnutls_ocsp_resp_init.3 +36 -0
  1586. data/vendor/local/share/man/man3/gnutls_ocsp_resp_print.3 +46 -0
  1587. data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify.3 +59 -0
  1588. data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify_direct.3 +53 -0
  1589. data/vendor/local/share/man/man3/gnutls_ocsp_status_request_enable_client.3 +47 -0
  1590. data/vendor/local/share/man/man3/gnutls_ocsp_status_request_get.3 +43 -0
  1591. data/vendor/local/share/man/man3/gnutls_ocsp_status_request_is_checked.3 +42 -0
  1592. data/vendor/local/share/man/man3/gnutls_openpgp_crt_check_hostname.3 +39 -0
  1593. data/vendor/local/share/man/man3/gnutls_openpgp_crt_deinit.3 +33 -0
  1594. data/vendor/local/share/man/man3/gnutls_openpgp_crt_export.3 +44 -0
  1595. data/vendor/local/share/man/man3/gnutls_openpgp_crt_export2.3 +42 -0
  1596. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_auth_subkey.3 +42 -0
  1597. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_creation_time.3 +35 -0
  1598. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_expiration_time.3 +36 -0
  1599. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_fingerprint.3 +40 -0
  1600. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_id.3 +39 -0
  1601. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_usage.3 +39 -0
  1602. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_name.3 +45 -0
  1603. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_algorithm.3 +43 -0
  1604. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_dsa_raw.3 +47 -0
  1605. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_rsa_raw.3 +43 -0
  1606. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_preferred_key_id.3 +38 -0
  1607. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_revoked_status.3 +38 -0
  1608. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_count.3 +38 -0
  1609. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_creation_time.3 +39 -0
  1610. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_expiration_time.3 +40 -0
  1611. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_fingerprint.3 +44 -0
  1612. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_id.3 +39 -0
  1613. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_idx.3 +39 -0
  1614. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_algorithm.3 +47 -0
  1615. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_dsa_raw.3 +49 -0
  1616. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_rsa_raw.3 +45 -0
  1617. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_revoked_status.3 +40 -0
  1618. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_usage.3 +45 -0
  1619. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_version.3 +35 -0
  1620. data/vendor/local/share/man/man3/gnutls_openpgp_crt_import.3 +41 -0
  1621. data/vendor/local/share/man/man3/gnutls_openpgp_crt_init.3 +35 -0
  1622. data/vendor/local/share/man/man3/gnutls_openpgp_crt_print.3 +44 -0
  1623. data/vendor/local/share/man/man3/gnutls_openpgp_crt_set_preferred_key_id.3 +42 -0
  1624. data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_ring.3 +50 -0
  1625. data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_self.3 +41 -0
  1626. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_check_id.3 +40 -0
  1627. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_deinit.3 +33 -0
  1628. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt.3 +42 -0
  1629. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt_count.3 +36 -0
  1630. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_import.3 +41 -0
  1631. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_init.3 +35 -0
  1632. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_deinit.3 +33 -0
  1633. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export.3 +50 -0
  1634. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export2.3 +46 -0
  1635. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_dsa_raw.3 +49 -0
  1636. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_rsa_raw.3 +51 -0
  1637. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_dsa_raw.3 +51 -0
  1638. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_rsa_raw.3 +53 -0
  1639. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_fingerprint.3 +42 -0
  1640. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_key_id.3 +39 -0
  1641. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_pk_algorithm.3 +45 -0
  1642. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_preferred_key_id.3 +38 -0
  1643. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_revoked_status.3 +38 -0
  1644. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_count.3 +38 -0
  1645. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_creation_time.3 +39 -0
  1646. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_expiration_time.3 +40 -0
  1647. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_fingerprint.3 +44 -0
  1648. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_id.3 +41 -0
  1649. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_idx.3 +39 -0
  1650. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_pk_algorithm.3 +47 -0
  1651. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_revoked_status.3 +40 -0
  1652. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_import.3 +45 -0
  1653. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_init.3 +35 -0
  1654. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sec_param.3 +39 -0
  1655. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_set_preferred_key_id.3 +42 -0
  1656. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sign_hash.3 +44 -0
  1657. data/vendor/local/share/man/man3/gnutls_openpgp_send_cert.3 +38 -0
  1658. data/vendor/local/share/man/man3/gnutls_openpgp_set_recv_key_function.3 +39 -0
  1659. data/vendor/local/share/man/man3/gnutls_pcert_deinit.3 +35 -0
  1660. data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp.3 +44 -0
  1661. data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp_raw.3 +48 -0
  1662. data/vendor/local/share/man/man3/gnutls_pcert_import_x509.3 +44 -0
  1663. data/vendor/local/share/man/man3/gnutls_pcert_import_x509_raw.3 +46 -0
  1664. data/vendor/local/share/man/man3/gnutls_pcert_list_import_x509_raw.3 +50 -0
  1665. data/vendor/local/share/man/man3/gnutls_pem_base64_decode.3 +46 -0
  1666. data/vendor/local/share/man/man3/gnutls_pem_base64_decode_alloc.3 +46 -0
  1667. data/vendor/local/share/man/man3/gnutls_pem_base64_encode.3 +47 -0
  1668. data/vendor/local/share/man/man3/gnutls_pem_base64_encode_alloc.3 +45 -0
  1669. data/vendor/local/share/man/man3/gnutls_perror.3 +34 -0
  1670. data/vendor/local/share/man/man3/gnutls_pk_algorithm_get_name.3 +36 -0
  1671. data/vendor/local/share/man/man3/gnutls_pk_bits_to_sec_param.3 +41 -0
  1672. data/vendor/local/share/man/man3/gnutls_pk_get_id.3 +40 -0
  1673. data/vendor/local/share/man/man3/gnutls_pk_get_name.3 +38 -0
  1674. data/vendor/local/share/man/man3/gnutls_pk_list.3 +40 -0
  1675. data/vendor/local/share/man/man3/gnutls_pk_to_sign.3 +38 -0
  1676. data/vendor/local/share/man/man3/gnutls_pkcs11_add_provider.3 +42 -0
  1677. data/vendor/local/share/man/man3/gnutls_pkcs11_copy_secret_key.3 +47 -0
  1678. data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_crt.3 +45 -0
  1679. data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_privkey.3 +48 -0
  1680. data/vendor/local/share/man/man3/gnutls_pkcs11_deinit.3 +35 -0
  1681. data/vendor/local/share/man/man3/gnutls_pkcs11_delete_url.3 +41 -0
  1682. data/vendor/local/share/man/man3/gnutls_pkcs11_get_pin_function.3 +38 -0
  1683. data/vendor/local/share/man/man3/gnutls_pkcs11_get_raw_issuer.3 +49 -0
  1684. data/vendor/local/share/man/man3/gnutls_pkcs11_init.3 +48 -0
  1685. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_deinit.3 +35 -0
  1686. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export.3 +49 -0
  1687. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export2.3 +44 -0
  1688. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export3.3 +46 -0
  1689. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export_url.3 +42 -0
  1690. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_info.3 +46 -0
  1691. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_type.3 +38 -0
  1692. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_import_url.3 +45 -0
  1693. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_init.3 +38 -0
  1694. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url.3 +47 -0
  1695. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url2.3 +48 -0
  1696. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_set_pin_function.3 +41 -0
  1697. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_deinit.3 +33 -0
  1698. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_export_url.3 +40 -0
  1699. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate.3 +48 -0
  1700. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate2.3 +58 -0
  1701. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_info.3 +44 -0
  1702. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_pk_algorithm.3 +39 -0
  1703. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_import_url.3 +43 -0
  1704. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_init.3 +36 -0
  1705. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_set_pin_function.3 +41 -0
  1706. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_status.3 +38 -0
  1707. data/vendor/local/share/man/man3/gnutls_pkcs11_reinit.3 +40 -0
  1708. data/vendor/local/share/man/man3/gnutls_pkcs11_set_pin_function.3 +39 -0
  1709. data/vendor/local/share/man/man3/gnutls_pkcs11_set_token_function.3 +38 -0
  1710. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_flags.3 +41 -0
  1711. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_info.3 +45 -0
  1712. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_mechanism.3 +43 -0
  1713. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_random.3 +42 -0
  1714. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_url.3 +44 -0
  1715. data/vendor/local/share/man/man3/gnutls_pkcs11_token_init.3 +42 -0
  1716. data/vendor/local/share/man/man3/gnutls_pkcs11_token_set_pin.3 +44 -0
  1717. data/vendor/local/share/man/man3/gnutls_pkcs11_type_get_name.3 +40 -0
  1718. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_decrypt.3 +39 -0
  1719. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_deinit.3 +33 -0
  1720. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_encrypt.3 +40 -0
  1721. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_count.3 +36 -0
  1722. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_data.3 +42 -0
  1723. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_friendly_name.3 +42 -0
  1724. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_key_id.3 +42 -0
  1725. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_type.3 +37 -0
  1726. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_init.3 +38 -0
  1727. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crl.3 +39 -0
  1728. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crt.3 +39 -0
  1729. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_data.3 +41 -0
  1730. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_friendly_name.3 +43 -0
  1731. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_key_id.3 +43 -0
  1732. data/vendor/local/share/man/man3/gnutls_pkcs12_deinit.3 +33 -0
  1733. data/vendor/local/share/man/man3/gnutls_pkcs12_export.3 +50 -0
  1734. data/vendor/local/share/man/man3/gnutls_pkcs12_export2.3 +47 -0
  1735. data/vendor/local/share/man/man3/gnutls_pkcs12_generate_mac.3 +38 -0
  1736. data/vendor/local/share/man/man3/gnutls_pkcs12_get_bag.3 +43 -0
  1737. data/vendor/local/share/man/man3/gnutls_pkcs12_import.3 +45 -0
  1738. data/vendor/local/share/man/man3/gnutls_pkcs12_init.3 +38 -0
  1739. data/vendor/local/share/man/man3/gnutls_pkcs12_set_bag.3 +38 -0
  1740. data/vendor/local/share/man/man3/gnutls_pkcs12_simple_parse.3 +84 -0
  1741. data/vendor/local/share/man/man3/gnutls_pkcs12_verify_mac.3 +38 -0
  1742. data/vendor/local/share/man/man3/gnutls_pkcs7_deinit.3 +33 -0
  1743. data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crl.3 +39 -0
  1744. data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crt.3 +39 -0
  1745. data/vendor/local/share/man/man3/gnutls_pkcs7_export.3 +50 -0
  1746. data/vendor/local/share/man/man3/gnutls_pkcs7_export2.3 +47 -0
  1747. data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_count.3 +37 -0
  1748. data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_raw.3 +45 -0
  1749. data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_count.3 +37 -0
  1750. data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_raw.3 +49 -0
  1751. data/vendor/local/share/man/man3/gnutls_pkcs7_import.3 +44 -0
  1752. data/vendor/local/share/man/man3/gnutls_pkcs7_init.3 +38 -0
  1753. data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl.3 +39 -0
  1754. data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl_raw.3 +38 -0
  1755. data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt.3 +40 -0
  1756. data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt_raw.3 +39 -0
  1757. data/vendor/local/share/man/man3/gnutls_prf.3 +64 -0
  1758. data/vendor/local/share/man/man3/gnutls_prf_raw.3 +62 -0
  1759. data/vendor/local/share/man/man3/gnutls_priority_certificate_type_list.3 +40 -0
  1760. data/vendor/local/share/man/man3/gnutls_priority_cipher_list.3 +40 -0
  1761. data/vendor/local/share/man/man3/gnutls_priority_compression_list.3 +40 -0
  1762. data/vendor/local/share/man/man3/gnutls_priority_deinit.3 +33 -0
  1763. data/vendor/local/share/man/man3/gnutls_priority_ecc_curve_list.3 +40 -0
  1764. data/vendor/local/share/man/man3/gnutls_priority_get_cipher_suite_index.3 +45 -0
  1765. data/vendor/local/share/man/man3/gnutls_priority_init.3 +102 -0
  1766. data/vendor/local/share/man/man3/gnutls_priority_kx_list.3 +40 -0
  1767. data/vendor/local/share/man/man3/gnutls_priority_mac_list.3 +40 -0
  1768. data/vendor/local/share/man/man3/gnutls_priority_protocol_list.3 +40 -0
  1769. data/vendor/local/share/man/man3/gnutls_priority_set.3 +38 -0
  1770. data/vendor/local/share/man/man3/gnutls_priority_set_direct.3 +45 -0
  1771. data/vendor/local/share/man/man3/gnutls_priority_sign_list.3 +40 -0
  1772. data/vendor/local/share/man/man3/gnutls_privkey_decrypt_data.3 +45 -0
  1773. data/vendor/local/share/man/man3/gnutls_privkey_deinit.3 +35 -0
  1774. data/vendor/local/share/man/man3/gnutls_privkey_get_pk_algorithm.3 +42 -0
  1775. data/vendor/local/share/man/man3/gnutls_privkey_get_type.3 +39 -0
  1776. data/vendor/local/share/man/man3/gnutls_privkey_import_ext.3 +52 -0
  1777. data/vendor/local/share/man/man3/gnutls_privkey_import_ext2.3 +58 -0
  1778. data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp.3 +50 -0
  1779. data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp_raw.3 +47 -0
  1780. data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11.3 +49 -0
  1781. data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11_url.3 +41 -0
  1782. data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_raw.3 +51 -0
  1783. data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_url.3 +55 -0
  1784. data/vendor/local/share/man/man3/gnutls_privkey_import_url.3 +44 -0
  1785. data/vendor/local/share/man/man3/gnutls_privkey_import_x509.3 +49 -0
  1786. data/vendor/local/share/man/man3/gnutls_privkey_import_x509_raw.3 +50 -0
  1787. data/vendor/local/share/man/man3/gnutls_privkey_init.3 +38 -0
  1788. data/vendor/local/share/man/man3/gnutls_privkey_set_pin_function.3 +44 -0
  1789. data/vendor/local/share/man/man3/gnutls_privkey_sign_data.3 +52 -0
  1790. data/vendor/local/share/man/man3/gnutls_privkey_sign_hash.3 +55 -0
  1791. data/vendor/local/share/man/man3/gnutls_privkey_sign_raw_data.3 +51 -0
  1792. data/vendor/local/share/man/man3/gnutls_privkey_status.3 +41 -0
  1793. data/vendor/local/share/man/man3/gnutls_protocol_get_id.3 +36 -0
  1794. data/vendor/local/share/man/man3/gnutls_protocol_get_name.3 +36 -0
  1795. data/vendor/local/share/man/man3/gnutls_protocol_get_version.3 +35 -0
  1796. data/vendor/local/share/man/man3/gnutls_protocol_list.3 +38 -0
  1797. data/vendor/local/share/man/man3/gnutls_protocol_set_priority.3 +39 -0
  1798. data/vendor/local/share/man/man3/gnutls_psk_allocate_client_credentials.3 +37 -0
  1799. data/vendor/local/share/man/man3/gnutls_psk_allocate_server_credentials.3 +37 -0
  1800. data/vendor/local/share/man/man3/gnutls_psk_client_get_hint.3 +39 -0
  1801. data/vendor/local/share/man/man3/gnutls_psk_free_client_credentials.3 +34 -0
  1802. data/vendor/local/share/man/man3/gnutls_psk_free_server_credentials.3 +34 -0
  1803. data/vendor/local/share/man/man3/gnutls_psk_server_get_username.3 +36 -0
  1804. data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials.3 +48 -0
  1805. data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials_function.3 +48 -0
  1806. data/vendor/local/share/man/man3/gnutls_psk_set_params_function.3 +37 -0
  1807. data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_file.3 +40 -0
  1808. data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_function.3 +48 -0
  1809. data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_hint.3 +43 -0
  1810. data/vendor/local/share/man/man3/gnutls_psk_set_server_dh_params.3 +37 -0
  1811. data/vendor/local/share/man/man3/gnutls_psk_set_server_params_function.3 +37 -0
  1812. data/vendor/local/share/man/man3/gnutls_pubkey_deinit.3 +35 -0
  1813. data/vendor/local/share/man/man3/gnutls_pubkey_encrypt_data.3 +45 -0
  1814. data/vendor/local/share/man/man3/gnutls_pubkey_export.3 +54 -0
  1815. data/vendor/local/share/man/man3/gnutls_pubkey_export2.3 +49 -0
  1816. data/vendor/local/share/man/man3/gnutls_pubkey_get_key_id.3 +52 -0
  1817. data/vendor/local/share/man/man3/gnutls_pubkey_get_key_usage.3 +40 -0
  1818. data/vendor/local/share/man/man3/gnutls_pubkey_get_openpgp_key_id.3 +56 -0
  1819. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_algorithm.3 +42 -0
  1820. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_dsa_raw.3 +47 -0
  1821. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_raw.3 +45 -0
  1822. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_x962.3 +43 -0
  1823. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_rsa_raw.3 +43 -0
  1824. data/vendor/local/share/man/man3/gnutls_pubkey_get_preferred_hash_algorithm.3 +47 -0
  1825. data/vendor/local/share/man/man3/gnutls_pubkey_get_verify_algorithm.3 +43 -0
  1826. data/vendor/local/share/man/man3/gnutls_pubkey_import.3 +46 -0
  1827. data/vendor/local/share/man/man3/gnutls_pubkey_import_dsa_raw.3 +48 -0
  1828. data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_raw.3 +45 -0
  1829. data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_x962.3 +43 -0
  1830. data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp.3 +45 -0
  1831. data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp_raw.3 +47 -0
  1832. data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11.3 +43 -0
  1833. data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11_url.3 +43 -0
  1834. data/vendor/local/share/man/man3/gnutls_pubkey_import_privkey.3 +45 -0
  1835. data/vendor/local/share/man/man3/gnutls_pubkey_import_rsa_raw.3 +43 -0
  1836. data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_raw.3 +50 -0
  1837. data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_url.3 +51 -0
  1838. data/vendor/local/share/man/man3/gnutls_pubkey_import_url.3 +43 -0
  1839. data/vendor/local/share/man/man3/gnutls_pubkey_import_x509.3 +43 -0
  1840. data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_crq.3 +43 -0
  1841. data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_raw.3 +45 -0
  1842. data/vendor/local/share/man/man3/gnutls_pubkey_init.3 +38 -0
  1843. data/vendor/local/share/man/man3/gnutls_pubkey_print.3 +48 -0
  1844. data/vendor/local/share/man/man3/gnutls_pubkey_set_key_usage.3 +42 -0
  1845. data/vendor/local/share/man/man3/gnutls_pubkey_set_pin_function.3 +44 -0
  1846. data/vendor/local/share/man/man3/gnutls_pubkey_verify_data.3 +48 -0
  1847. data/vendor/local/share/man/man3/gnutls_pubkey_verify_data2.3 +47 -0
  1848. data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash.3 +48 -0
  1849. data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash2.3 +47 -0
  1850. data/vendor/local/share/man/man3/gnutls_random_art.3 +47 -0
  1851. data/vendor/local/share/man/man3/gnutls_range_split.3 +47 -0
  1852. data/vendor/local/share/man/man3/gnutls_record_can_use_length_hiding.3 +42 -0
  1853. data/vendor/local/share/man/man3/gnutls_record_check_corked.3 +38 -0
  1854. data/vendor/local/share/man/man3/gnutls_record_check_pending.3 +38 -0
  1855. data/vendor/local/share/man/man3/gnutls_record_cork.3 +39 -0
  1856. data/vendor/local/share/man/man3/gnutls_record_disable_padding.3 +39 -0
  1857. data/vendor/local/share/man/man3/gnutls_record_get_direction.3 +44 -0
  1858. data/vendor/local/share/man/man3/gnutls_record_get_discarded.3 +38 -0
  1859. data/vendor/local/share/man/man3/gnutls_record_get_max_size.3 +36 -0
  1860. data/vendor/local/share/man/man3/gnutls_record_overhead_size.3 +36 -0
  1861. data/vendor/local/share/man/man3/gnutls_record_recv.3 +56 -0
  1862. data/vendor/local/share/man/man3/gnutls_record_recv_seq.3 +50 -0
  1863. data/vendor/local/share/man/man3/gnutls_record_send.3 +64 -0
  1864. data/vendor/local/share/man/man3/gnutls_record_send_range.3 +51 -0
  1865. data/vendor/local/share/man/man3/gnutls_record_set_max_empty_records.3 +41 -0
  1866. data/vendor/local/share/man/man3/gnutls_record_set_max_size.3 +48 -0
  1867. data/vendor/local/share/man/man3/gnutls_record_set_timeout.3 +43 -0
  1868. data/vendor/local/share/man/man3/gnutls_record_uncork.3 +49 -0
  1869. data/vendor/local/share/man/man3/gnutls_rehandshake.3 +56 -0
  1870. data/vendor/local/share/man/man3/gnutls_rnd.3 +42 -0
  1871. data/vendor/local/share/man/man3/gnutls_rnd_refresh.3 +38 -0
  1872. data/vendor/local/share/man/man3/gnutls_rsa_export_get_modulus_bits.3 +36 -0
  1873. data/vendor/local/share/man/man3/gnutls_rsa_export_get_pubkey.3 +42 -0
  1874. data/vendor/local/share/man/man3/gnutls_rsa_params_cpy.3 +38 -0
  1875. data/vendor/local/share/man/man3/gnutls_rsa_params_deinit.3 +33 -0
  1876. data/vendor/local/share/man/man3/gnutls_rsa_params_export_pkcs1.3 +46 -0
  1877. data/vendor/local/share/man/man3/gnutls_rsa_params_export_raw.3 +51 -0
  1878. data/vendor/local/share/man/man3/gnutls_rsa_params_generate2.3 +44 -0
  1879. data/vendor/local/share/man/man3/gnutls_rsa_params_import_pkcs1.3 +43 -0
  1880. data/vendor/local/share/man/man3/gnutls_rsa_params_import_raw.3 +49 -0
  1881. data/vendor/local/share/man/man3/gnutls_rsa_params_init.3 +35 -0
  1882. data/vendor/local/share/man/man3/gnutls_safe_renegotiation_status.3 +39 -0
  1883. data/vendor/local/share/man/man3/gnutls_sec_param_get_name.3 +38 -0
  1884. data/vendor/local/share/man/man3/gnutls_sec_param_to_pk_bits.3 +43 -0
  1885. data/vendor/local/share/man/man3/gnutls_server_name_get.3 +59 -0
  1886. data/vendor/local/share/man/man3/gnutls_server_name_set.3 +50 -0
  1887. data/vendor/local/share/man/man3/gnutls_session_channel_binding.3 +45 -0
  1888. data/vendor/local/share/man/man3/gnutls_session_enable_compatibility_mode.3 +42 -0
  1889. data/vendor/local/share/man/man3/gnutls_session_force_valid.3 +37 -0
  1890. data/vendor/local/share/man/man3/gnutls_session_get_data.3 +43 -0
  1891. data/vendor/local/share/man/man3/gnutls_session_get_data2.3 +42 -0
  1892. data/vendor/local/share/man/man3/gnutls_session_get_desc.3 +38 -0
  1893. data/vendor/local/share/man/man3/gnutls_session_get_id.3 +47 -0
  1894. data/vendor/local/share/man/man3/gnutls_session_get_id2.3 +41 -0
  1895. data/vendor/local/share/man/man3/gnutls_session_get_ptr.3 +37 -0
  1896. data/vendor/local/share/man/man3/gnutls_session_get_random.3 +44 -0
  1897. data/vendor/local/share/man/man3/gnutls_session_is_resumed.3 +36 -0
  1898. data/vendor/local/share/man/man3/gnutls_session_resumption_requested.3 +36 -0
  1899. data/vendor/local/share/man/man3/gnutls_session_set_data.3 +47 -0
  1900. data/vendor/local/share/man/man3/gnutls_session_set_id.3 +42 -0
  1901. data/vendor/local/share/man/man3/gnutls_session_set_premaster.3 +55 -0
  1902. data/vendor/local/share/man/man3/gnutls_session_set_ptr.3 +37 -0
  1903. data/vendor/local/share/man/man3/gnutls_session_ticket_enable_client.3 +39 -0
  1904. data/vendor/local/share/man/man3/gnutls_session_ticket_enable_server.3 +42 -0
  1905. data/vendor/local/share/man/man3/gnutls_session_ticket_key_generate.3 +40 -0
  1906. data/vendor/local/share/man/man3/gnutls_set_default_export_priority.3 +46 -0
  1907. data/vendor/local/share/man/man3/gnutls_set_default_priority.3 +45 -0
  1908. data/vendor/local/share/man/man3/gnutls_sign_algorithm_get.3 +38 -0
  1909. data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_client.3 +38 -0
  1910. data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_requested.3 +50 -0
  1911. data/vendor/local/share/man/man3/gnutls_sign_callback_get.3 +40 -0
  1912. data/vendor/local/share/man/man3/gnutls_sign_callback_set.3 +50 -0
  1913. data/vendor/local/share/man/man3/gnutls_sign_get_hash_algorithm.3 +38 -0
  1914. data/vendor/local/share/man/man3/gnutls_sign_get_id.3 +36 -0
  1915. data/vendor/local/share/man/man3/gnutls_sign_get_name.3 +36 -0
  1916. data/vendor/local/share/man/man3/gnutls_sign_get_pk_algorithm.3 +38 -0
  1917. data/vendor/local/share/man/man3/gnutls_sign_is_secure.3 +33 -0
  1918. data/vendor/local/share/man/man3/gnutls_sign_list.3 +36 -0
  1919. data/vendor/local/share/man/man3/gnutls_srp_allocate_client_credentials.3 +37 -0
  1920. data/vendor/local/share/man/man3/gnutls_srp_allocate_server_credentials.3 +37 -0
  1921. data/vendor/local/share/man/man3/gnutls_srp_base64_decode.3 +46 -0
  1922. data/vendor/local/share/man/man3/gnutls_srp_base64_decode_alloc.3 +44 -0
  1923. data/vendor/local/share/man/man3/gnutls_srp_base64_encode.3 +46 -0
  1924. data/vendor/local/share/man/man3/gnutls_srp_base64_encode_alloc.3 +45 -0
  1925. data/vendor/local/share/man/man3/gnutls_srp_free_client_credentials.3 +34 -0
  1926. data/vendor/local/share/man/man3/gnutls_srp_free_server_credentials.3 +34 -0
  1927. data/vendor/local/share/man/man3/gnutls_srp_server_get_username.3 +37 -0
  1928. data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials.3 +44 -0
  1929. data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials_function.3 +53 -0
  1930. data/vendor/local/share/man/man3/gnutls_srp_set_prime_bits.3 +45 -0
  1931. data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_file.3 +43 -0
  1932. data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_function.3 +56 -0
  1933. data/vendor/local/share/man/man3/gnutls_srp_verifier.3 +51 -0
  1934. data/vendor/local/share/man/man3/gnutls_srtp_get_keys.3 +54 -0
  1935. data/vendor/local/share/man/man3/gnutls_srtp_get_mki.3 +42 -0
  1936. data/vendor/local/share/man/man3/gnutls_srtp_get_profile_id.3 +40 -0
  1937. data/vendor/local/share/man/man3/gnutls_srtp_get_profile_name.3 +39 -0
  1938. data/vendor/local/share/man/man3/gnutls_srtp_get_selected_profile.3 +40 -0
  1939. data/vendor/local/share/man/man3/gnutls_srtp_set_mki.3 +41 -0
  1940. data/vendor/local/share/man/man3/gnutls_srtp_set_profile.3 +41 -0
  1941. data/vendor/local/share/man/man3/gnutls_srtp_set_profile_direct.3 +44 -0
  1942. data/vendor/local/share/man/man3/gnutls_store_commitment.3 +60 -0
  1943. data/vendor/local/share/man/man3/gnutls_store_pubkey.3 +58 -0
  1944. data/vendor/local/share/man/man3/gnutls_strerror.3 +39 -0
  1945. data/vendor/local/share/man/man3/gnutls_strerror_name.3 +40 -0
  1946. data/vendor/local/share/man/man3/gnutls_supplemental_get_name.3 +37 -0
  1947. data/vendor/local/share/man/man3/gnutls_tdb_deinit.3 +33 -0
  1948. data/vendor/local/share/man/man3/gnutls_tdb_init.3 +36 -0
  1949. data/vendor/local/share/man/man3/gnutls_tdb_set_store_commitment_func.3 +40 -0
  1950. data/vendor/local/share/man/man3/gnutls_tdb_set_store_func.3 +40 -0
  1951. data/vendor/local/share/man/man3/gnutls_tdb_set_verify_func.3 +39 -0
  1952. data/vendor/local/share/man/man3/gnutls_tpm_get_registered.3 +39 -0
  1953. data/vendor/local/share/man/man3/gnutls_tpm_key_list_deinit.3 +35 -0
  1954. data/vendor/local/share/man/man3/gnutls_tpm_key_list_get_url.3 +47 -0
  1955. data/vendor/local/share/man/man3/gnutls_tpm_privkey_delete.3 +41 -0
  1956. data/vendor/local/share/man/man3/gnutls_tpm_privkey_generate.3 +64 -0
  1957. data/vendor/local/share/man/man3/gnutls_transport_get_int.3 +39 -0
  1958. data/vendor/local/share/man/man3/gnutls_transport_get_int2.3 +41 -0
  1959. data/vendor/local/share/man/man3/gnutls_transport_get_ptr.3 +37 -0
  1960. data/vendor/local/share/man/man3/gnutls_transport_get_ptr2.3 +39 -0
  1961. data/vendor/local/share/man/man3/gnutls_transport_set_errno.3 +43 -0
  1962. data/vendor/local/share/man/man3/gnutls_transport_set_errno_function.3 +42 -0
  1963. data/vendor/local/share/man/man3/gnutls_transport_set_int.3 +38 -0
  1964. data/vendor/local/share/man/man3/gnutls_transport_set_int2.3 +42 -0
  1965. data/vendor/local/share/man/man3/gnutls_transport_set_ptr.3 +37 -0
  1966. data/vendor/local/share/man/man3/gnutls_transport_set_ptr2.3 +40 -0
  1967. data/vendor/local/share/man/man3/gnutls_transport_set_pull_function.3 +42 -0
  1968. data/vendor/local/share/man/man3/gnutls_transport_set_pull_timeout_function.3 +48 -0
  1969. data/vendor/local/share/man/man3/gnutls_transport_set_push_function.3 +44 -0
  1970. data/vendor/local/share/man/man3/gnutls_transport_set_vec_push_function.3 +43 -0
  1971. data/vendor/local/share/man/man3/gnutls_url_is_supported.3 +39 -0
  1972. data/vendor/local/share/man/man3/gnutls_verify_stored_pubkey.3 +67 -0
  1973. data/vendor/local/share/man/man3/gnutls_x509_crl_check_issuer.3 +39 -0
  1974. data/vendor/local/share/man/man3/gnutls_x509_crl_deinit.3 +33 -0
  1975. data/vendor/local/share/man/man3/gnutls_x509_crl_export.3 +49 -0
  1976. data/vendor/local/share/man/man3/gnutls_x509_crl_export2.3 +47 -0
  1977. data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_gn_serial.3 +57 -0
  1978. data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_id.3 +51 -0
  1979. data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_count.3 +36 -0
  1980. data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_serial.3 +45 -0
  1981. data/vendor/local/share/man/man3/gnutls_x509_crl_get_dn_oid.3 +46 -0
  1982. data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_data.3 +53 -0
  1983. data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_info.3 +56 -0
  1984. data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_oid.3 +48 -0
  1985. data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn.3 +46 -0
  1986. data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn2.3 +43 -0
  1987. data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn_by_oid.3 +58 -0
  1988. data/vendor/local/share/man/man3/gnutls_x509_crl_get_next_update.3 +37 -0
  1989. data/vendor/local/share/man/man3/gnutls_x509_crl_get_number.3 +46 -0
  1990. data/vendor/local/share/man/man3/gnutls_x509_crl_get_raw_issuer_dn.3 +40 -0
  1991. data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature.3 +40 -0
  1992. data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature_algorithm.3 +37 -0
  1993. data/vendor/local/share/man/man3/gnutls_x509_crl_get_this_update.3 +35 -0
  1994. data/vendor/local/share/man/man3/gnutls_x509_crl_get_version.3 +35 -0
  1995. data/vendor/local/share/man/man3/gnutls_x509_crl_import.3 +43 -0
  1996. data/vendor/local/share/man/man3/gnutls_x509_crl_init.3 +40 -0
  1997. data/vendor/local/share/man/man3/gnutls_x509_crl_list_import.3 +49 -0
  1998. data/vendor/local/share/man/man3/gnutls_x509_crl_list_import2.3 +50 -0
  1999. data/vendor/local/share/man/man3/gnutls_x509_crl_print.3 +43 -0
  2000. data/vendor/local/share/man/man3/gnutls_x509_crl_privkey_sign.3 +50 -0
  2001. data/vendor/local/share/man/man3/gnutls_x509_crl_set_authority_key_id.3 +45 -0
  2002. data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt.3 +40 -0
  2003. data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt_serial.3 +42 -0
  2004. data/vendor/local/share/man/man3/gnutls_x509_crl_set_next_update.3 +38 -0
  2005. data/vendor/local/share/man/man3/gnutls_x509_crl_set_number.3 +44 -0
  2006. data/vendor/local/share/man/man3/gnutls_x509_crl_set_this_update.3 +38 -0
  2007. data/vendor/local/share/man/man3/gnutls_x509_crl_set_version.3 +40 -0
  2008. data/vendor/local/share/man/man3/gnutls_x509_crl_sign.3 +43 -0
  2009. data/vendor/local/share/man/man3/gnutls_x509_crl_sign2.3 +48 -0
  2010. data/vendor/local/share/man/man3/gnutls_x509_crl_verify.3 +51 -0
  2011. data/vendor/local/share/man/man3/gnutls_x509_crq_deinit.3 +34 -0
  2012. data/vendor/local/share/man/man3/gnutls_x509_crq_export.3 +51 -0
  2013. data/vendor/local/share/man/man3/gnutls_x509_crq_export2.3 +48 -0
  2014. data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_by_oid.3 +50 -0
  2015. data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_data.3 +53 -0
  2016. data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_info.3 +54 -0
  2017. data/vendor/local/share/man/man3/gnutls_x509_crq_get_basic_constraints.3 +52 -0
  2018. data/vendor/local/share/man/man3/gnutls_x509_crq_get_challenge_password.3 +42 -0
  2019. data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn.3 +45 -0
  2020. data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn2.3 +43 -0
  2021. data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_by_oid.3 +57 -0
  2022. data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_oid.3 +44 -0
  2023. data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_by_oid.3 +53 -0
  2024. data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_data.3 +53 -0
  2025. data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_info.3 +56 -0
  2026. data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_id.3 +52 -0
  2027. data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_purpose_oid.3 +50 -0
  2028. data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_rsa_raw.3 +44 -0
  2029. data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_usage.3 +50 -0
  2030. data/vendor/local/share/man/man3/gnutls_x509_crq_get_pk_algorithm.3 +43 -0
  2031. data/vendor/local/share/man/man3/gnutls_x509_crq_get_private_key_usage_period.3 +43 -0
  2032. data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_name.3 +60 -0
  2033. data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_othername_oid.3 +58 -0
  2034. data/vendor/local/share/man/man3/gnutls_x509_crq_get_version.3 +37 -0
  2035. data/vendor/local/share/man/man3/gnutls_x509_crq_import.3 +45 -0
  2036. data/vendor/local/share/man/man3/gnutls_x509_crq_init.3 +37 -0
  2037. data/vendor/local/share/man/man3/gnutls_x509_crq_print.3 +45 -0
  2038. data/vendor/local/share/man/man3/gnutls_x509_crq_privkey_sign.3 +52 -0
  2039. data/vendor/local/share/man/man3/gnutls_x509_crq_set_attribute_by_oid.3 +47 -0
  2040. data/vendor/local/share/man/man3/gnutls_x509_crq_set_basic_constraints.3 +44 -0
  2041. data/vendor/local/share/man/man3/gnutls_x509_crq_set_challenge_password.3 +39 -0
  2042. data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn.3 +41 -0
  2043. data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn_by_oid.3 +52 -0
  2044. data/vendor/local/share/man/man3/gnutls_x509_crq_set_key.3 +39 -0
  2045. data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_purpose_oid.3 +46 -0
  2046. data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_rsa_raw.3 +43 -0
  2047. data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_usage.3 +40 -0
  2048. data/vendor/local/share/man/man3/gnutls_x509_crq_set_private_key_usage_period.3 +40 -0
  2049. data/vendor/local/share/man/man3/gnutls_x509_crq_set_pubkey.3 +41 -0
  2050. data/vendor/local/share/man/man3/gnutls_x509_crq_set_subject_alt_name.3 +48 -0
  2051. data/vendor/local/share/man/man3/gnutls_x509_crq_set_version.3 +39 -0
  2052. data/vendor/local/share/man/man3/gnutls_x509_crq_sign.3 +41 -0
  2053. data/vendor/local/share/man/man3/gnutls_x509_crq_sign2.3 +50 -0
  2054. data/vendor/local/share/man/man3/gnutls_x509_crq_verify.3 +41 -0
  2055. data/vendor/local/share/man/man3/gnutls_x509_crt_check_hostname.3 +52 -0
  2056. data/vendor/local/share/man/man3/gnutls_x509_crt_check_issuer.3 +40 -0
  2057. data/vendor/local/share/man/man3/gnutls_x509_crt_check_revocation.3 +41 -0
  2058. data/vendor/local/share/man/man3/gnutls_x509_crt_cpy_crl_dist_points.3 +40 -0
  2059. data/vendor/local/share/man/man3/gnutls_x509_crt_deinit.3 +33 -0
  2060. data/vendor/local/share/man/man3/gnutls_x509_crt_export.3 +50 -0
  2061. data/vendor/local/share/man/man3/gnutls_x509_crt_export2.3 +46 -0
  2062. data/vendor/local/share/man/man3/gnutls_x509_crt_get_activation_time.3 +36 -0
  2063. data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_info_access.3 +100 -0
  2064. data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_gn_serial.3 +58 -0
  2065. data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_id.3 +48 -0
  2066. data/vendor/local/share/man/man3/gnutls_x509_crt_get_basic_constraints.3 +50 -0
  2067. data/vendor/local/share/man/man3/gnutls_x509_crt_get_ca_status.3 +45 -0
  2068. data/vendor/local/share/man/man3/gnutls_x509_crt_get_crl_dist_points.3 +53 -0
  2069. data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn.3 +46 -0
  2070. data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn2.3 +43 -0
  2071. data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_by_oid.3 +60 -0
  2072. data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_oid.3 +48 -0
  2073. data/vendor/local/share/man/man3/gnutls_x509_crt_get_expiration_time.3 +39 -0
  2074. data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_by_oid.3 +50 -0
  2075. data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_data.3 +51 -0
  2076. data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_info.3 +55 -0
  2077. data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_oid.3 +48 -0
  2078. data/vendor/local/share/man/man3/gnutls_x509_crt_get_fingerprint.3 +46 -0
  2079. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer.3 +42 -0
  2080. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name.3 +64 -0
  2081. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name2.3 +58 -0
  2082. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_othername_oid.3 +61 -0
  2083. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn.3 +46 -0
  2084. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn2.3 +43 -0
  2085. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_by_oid.3 +60 -0
  2086. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_oid.3 +48 -0
  2087. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_unique_id.3 +47 -0
  2088. data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_id.3 +50 -0
  2089. data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_purpose_oid.3 +51 -0
  2090. data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_usage.3 +48 -0
  2091. data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_algorithm.3 +44 -0
  2092. data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_dsa_raw.3 +45 -0
  2093. data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_rsa_raw.3 +41 -0
  2094. data/vendor/local/share/man/man3/gnutls_x509_crt_get_policy.3 +48 -0
  2095. data/vendor/local/share/man/man3/gnutls_x509_crt_get_preferred_hash_algorithm.3 +46 -0
  2096. data/vendor/local/share/man/man3/gnutls_x509_crt_get_private_key_usage_period.3 +44 -0
  2097. data/vendor/local/share/man/man3/gnutls_x509_crt_get_proxy.3 +49 -0
  2098. data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_dn.3 +39 -0
  2099. data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_issuer_dn.3 +39 -0
  2100. data/vendor/local/share/man/man3/gnutls_x509_crt_get_serial.3 +43 -0
  2101. data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature.3 +40 -0
  2102. data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature_algorithm.3 +38 -0
  2103. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject.3 +42 -0
  2104. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name.3 +61 -0
  2105. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name2.3 +56 -0
  2106. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_othername_oid.3 +59 -0
  2107. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_key_id.3 +44 -0
  2108. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_unique_id.3 +45 -0
  2109. data/vendor/local/share/man/man3/gnutls_x509_crt_get_verify_algorithm.3 +45 -0
  2110. data/vendor/local/share/man/man3/gnutls_x509_crt_get_version.3 +35 -0
  2111. data/vendor/local/share/man/man3/gnutls_x509_crt_import.3 +45 -0
  2112. data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11.3 +41 -0
  2113. data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11_url.3 +44 -0
  2114. data/vendor/local/share/man/man3/gnutls_x509_crt_init.3 +36 -0
  2115. data/vendor/local/share/man/man3/gnutls_x509_crt_list_import.3 +54 -0
  2116. data/vendor/local/share/man/man3/gnutls_x509_crt_list_import2.3 +53 -0
  2117. data/vendor/local/share/man/man3/gnutls_x509_crt_list_import_pkcs11.3 +45 -0
  2118. data/vendor/local/share/man/man3/gnutls_x509_crt_list_verify.3 +62 -0
  2119. data/vendor/local/share/man/man3/gnutls_x509_crt_print.3 +48 -0
  2120. data/vendor/local/share/man/man3/gnutls_x509_crt_privkey_sign.3 +48 -0
  2121. data/vendor/local/share/man/man3/gnutls_x509_crt_set_activation_time.3 +39 -0
  2122. data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_info_access.3 +50 -0
  2123. data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_key_id.3 +41 -0
  2124. data/vendor/local/share/man/man3/gnutls_x509_crt_set_basic_constraints.3 +42 -0
  2125. data/vendor/local/share/man/man3/gnutls_x509_crt_set_ca_status.3 +40 -0
  2126. data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points.3 +42 -0
  2127. data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points2.3 +46 -0
  2128. data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq.3 +40 -0
  2129. data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq_extensions.3 +41 -0
  2130. data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn.3 +41 -0
  2131. data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn_by_oid.3 +52 -0
  2132. data/vendor/local/share/man/man3/gnutls_x509_crt_set_expiration_time.3 +40 -0
  2133. data/vendor/local/share/man/man3/gnutls_x509_crt_set_extension_by_oid.3 +46 -0
  2134. data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn.3 +41 -0
  2135. data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn_by_oid.3 +56 -0
  2136. data/vendor/local/share/man/man3/gnutls_x509_crt_set_key.3 +40 -0
  2137. data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_purpose_oid.3 +44 -0
  2138. data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_usage.3 +38 -0
  2139. data/vendor/local/share/man/man3/gnutls_x509_crt_set_pin_function.3 +44 -0
  2140. data/vendor/local/share/man/man3/gnutls_x509_crt_set_policy.3 +47 -0
  2141. data/vendor/local/share/man/man3/gnutls_x509_crt_set_private_key_usage_period.3 +40 -0
  2142. data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy.3 +46 -0
  2143. data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy_dn.3 +47 -0
  2144. data/vendor/local/share/man/man3/gnutls_x509_crt_set_pubkey.3 +41 -0
  2145. data/vendor/local/share/man/man3/gnutls_x509_crt_set_serial.3 +45 -0
  2146. data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alt_name.3 +47 -0
  2147. data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alternative_name.3 +45 -0
  2148. data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_key_id.3 +41 -0
  2149. data/vendor/local/share/man/man3/gnutls_x509_crt_set_version.3 +45 -0
  2150. data/vendor/local/share/man/man3/gnutls_x509_crt_sign.3 +41 -0
  2151. data/vendor/local/share/man/man3/gnutls_x509_crt_sign2.3 +48 -0
  2152. data/vendor/local/share/man/man3/gnutls_x509_crt_verify.3 +46 -0
  2153. data/vendor/local/share/man/man3/gnutls_x509_crt_verify_data.3 +46 -0
  2154. data/vendor/local/share/man/man3/gnutls_x509_crt_verify_hash.3 +46 -0
  2155. data/vendor/local/share/man/man3/gnutls_x509_dn_deinit.3 +36 -0
  2156. data/vendor/local/share/man/man3/gnutls_x509_dn_export.3 +50 -0
  2157. data/vendor/local/share/man/man3/gnutls_x509_dn_export2.3 +47 -0
  2158. data/vendor/local/share/man/man3/gnutls_x509_dn_get_rdn_ava.3 +58 -0
  2159. data/vendor/local/share/man/man3/gnutls_x509_dn_import.3 +43 -0
  2160. data/vendor/local/share/man/man3/gnutls_x509_dn_init.3 +41 -0
  2161. data/vendor/local/share/man/man3/gnutls_x509_dn_oid_known.3 +41 -0
  2162. data/vendor/local/share/man/man3/gnutls_x509_dn_oid_name.3 +42 -0
  2163. data/vendor/local/share/man/man3/gnutls_x509_policy_release.3 +36 -0
  2164. data/vendor/local/share/man/man3/gnutls_x509_privkey_cpy.3 +39 -0
  2165. data/vendor/local/share/man/man3/gnutls_x509_privkey_deinit.3 +33 -0
  2166. data/vendor/local/share/man/man3/gnutls_x509_privkey_export.3 +52 -0
  2167. data/vendor/local/share/man/man3/gnutls_x509_privkey_export2.3 +49 -0
  2168. data/vendor/local/share/man/man3/gnutls_x509_privkey_export2_pkcs8.3 +58 -0
  2169. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_dsa_raw.3 +48 -0
  2170. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_ecc_raw.3 +48 -0
  2171. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_pkcs8.3 +61 -0
  2172. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw.3 +50 -0
  2173. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw2.3 +56 -0
  2174. data/vendor/local/share/man/man3/gnutls_x509_privkey_fix.3 +37 -0
  2175. data/vendor/local/share/man/man3/gnutls_x509_privkey_generate.3 +49 -0
  2176. data/vendor/local/share/man/man3/gnutls_x509_privkey_get_key_id.3 +50 -0
  2177. data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm.3 +37 -0
  2178. data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm2.3 +39 -0
  2179. data/vendor/local/share/man/man3/gnutls_x509_privkey_import.3 +46 -0
  2180. data/vendor/local/share/man/man3/gnutls_x509_privkey_import2.3 +52 -0
  2181. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_dsa_raw.3 +48 -0
  2182. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_ecc_raw.3 +48 -0
  2183. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_openssl.3 +48 -0
  2184. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_pkcs8.3 +59 -0
  2185. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw.3 +50 -0
  2186. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw2.3 +54 -0
  2187. data/vendor/local/share/man/man3/gnutls_x509_privkey_init.3 +36 -0
  2188. data/vendor/local/share/man/man3/gnutls_x509_privkey_sec_param.3 +39 -0
  2189. data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_data.3 +59 -0
  2190. data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_hash.3 +45 -0
  2191. data/vendor/local/share/man/man3/gnutls_x509_privkey_verify_params.3 +36 -0
  2192. data/vendor/local/share/man/man3/gnutls_x509_rdn_get.3 +44 -0
  2193. data/vendor/local/share/man/man3/gnutls_x509_rdn_get_by_oid.3 +51 -0
  2194. data/vendor/local/share/man/man3/gnutls_x509_rdn_get_oid.3 +47 -0
  2195. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_cas.3 +45 -0
  2196. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_crls.3 +50 -0
  2197. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_named_crt.3 +56 -0
  2198. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_system_trust.3 +43 -0
  2199. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_file.3 +49 -0
  2200. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_mem.3 +48 -0
  2201. data/vendor/local/share/man/man3/gnutls_x509_trust_list_deinit.3 +37 -0
  2202. data/vendor/local/share/man/man3/gnutls_x509_trust_list_get_issuer.3 +45 -0
  2203. data/vendor/local/share/man/man3/gnutls_x509_trust_list_init.3 +40 -0
  2204. data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_cas.3 +48 -0
  2205. data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_file.3 +46 -0
  2206. data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_mem.3 +44 -0
  2207. data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_crt.3 +50 -0
  2208. data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_named_crt.3 +53 -0
  2209. data/vendor/local/share/man/man3/iconv.3 +92 -0
  2210. data/vendor/local/share/man/man3/iconv_close.3 +31 -0
  2211. data/vendor/local/share/man/man3/iconv_open.3 +205 -0
  2212. data/vendor/local/share/man/man3/iconv_open_into.3 +47 -0
  2213. data/vendor/local/share/man/man3/iconvctl.3 +67 -0
  2214. data/vendor/local/share/man/man3/ngettext.3 +60 -0
  2215. data/vendor/local/share/man/man3/textdomain.3 +57 -0
  2216. data/vendor/local/share/man/man3/xssl_client_init.3 +56 -0
  2217. data/vendor/local/share/man/man3/xssl_cred_deinit.3 +37 -0
  2218. data/vendor/local/share/man/man3/xssl_cred_init.3 +48 -0
  2219. data/vendor/local/share/man/man3/xssl_deinit.3 +36 -0
  2220. data/vendor/local/share/man/man3/xssl_flush.3 +39 -0
  2221. data/vendor/local/share/man/man3/xssl_get_session.3 +35 -0
  2222. data/vendor/local/share/man/man3/xssl_getdelim.3 +49 -0
  2223. data/vendor/local/share/man/man3/xssl_printf.3 +45 -0
  2224. data/vendor/local/share/man/man3/xssl_read.3 +43 -0
  2225. data/vendor/local/share/man/man3/xssl_server_init.3 +50 -0
  2226. data/vendor/local/share/man/man3/xssl_sinit.3 +44 -0
  2227. data/vendor/local/share/man/man3/xssl_write.3 +47 -0
  2228. metadata +2311 -0
@@ -0,0 +1,2516 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GLib Reference Manual: File Utilities</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GLib Reference Manual">
8
+ <link rel="up" href="glib-utilities.html" title="GLib Utilities">
9
+ <link rel="prev" href="glib-Spawning-Processes.html" title="Spawning Processes">
10
+ <link rel="next" href="glib-URI-Functions.html" title="URI Functions">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#glib-File-Utilities.description" class="shortcut">Description</a></span>
19
+ </td>
20
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21
+ <td><a accesskey="u" href="glib-utilities.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22
+ <td><a accesskey="p" href="glib-Spawning-Processes.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23
+ <td><a accesskey="n" href="glib-URI-Functions.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24
+ </tr></table>
25
+ <div class="refentry">
26
+ <a name="glib-File-Utilities"></a><div class="titlepage"></div>
27
+ <div class="refnamediv"><table width="100%"><tr>
28
+ <td valign="top">
29
+ <h2><span class="refentrytitle"><a name="glib-File-Utilities.top_of_page"></a>File Utilities</span></h2>
30
+ <p>File Utilities — various file-related functions</p>
31
+ </td>
32
+ <td class="gallery_image" valign="top" align="right"></td>
33
+ </tr></table></div>
34
+ <div class="refsect1">
35
+ <a name="glib-File-Utilities.functions"></a><h2>Functions</h2>
36
+ <div class="informaltable"><table width="100%" border="0">
37
+ <colgroup>
38
+ <col width="150px" class="functions_return">
39
+ <col class="functions_name">
40
+ </colgroup>
41
+ <tbody>
42
+ <tr>
43
+ <td class="function_type">
44
+ <a class="link" href="glib-File-Utilities.html#GFileError" title="enum GFileError"><span class="returnvalue">GFileError</span></a>
45
+ </td>
46
+ <td class="function_name">
47
+ <a class="link" href="glib-File-Utilities.html#g-file-error-from-errno" title="g_file_error_from_errno ()">g_file_error_from_errno</a> <span class="c_punctuation">()</span>
48
+ </td>
49
+ </tr>
50
+ <tr>
51
+ <td class="function_type">
52
+ <a class="link" href="glib-Basic-Types.html#gboolean" title="gboolean"><span class="returnvalue">gboolean</span></a>
53
+ </td>
54
+ <td class="function_name">
55
+ <a class="link" href="glib-File-Utilities.html#g-file-get-contents" title="g_file_get_contents ()">g_file_get_contents</a> <span class="c_punctuation">()</span>
56
+ </td>
57
+ </tr>
58
+ <tr>
59
+ <td class="function_type">
60
+ <a class="link" href="glib-Basic-Types.html#gboolean" title="gboolean"><span class="returnvalue">gboolean</span></a>
61
+ </td>
62
+ <td class="function_name">
63
+ <a class="link" href="glib-File-Utilities.html#g-file-set-contents" title="g_file_set_contents ()">g_file_set_contents</a> <span class="c_punctuation">()</span>
64
+ </td>
65
+ </tr>
66
+ <tr>
67
+ <td class="function_type">
68
+ <a class="link" href="glib-Basic-Types.html#gboolean" title="gboolean"><span class="returnvalue">gboolean</span></a>
69
+ </td>
70
+ <td class="function_name">
71
+ <a class="link" href="glib-File-Utilities.html#g-file-test" title="g_file_test ()">g_file_test</a> <span class="c_punctuation">()</span>
72
+ </td>
73
+ </tr>
74
+ <tr>
75
+ <td class="function_type">
76
+ <a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="returnvalue">gint</span></a>
77
+ </td>
78
+ <td class="function_name">
79
+ <a class="link" href="glib-File-Utilities.html#g-mkstemp" title="g_mkstemp ()">g_mkstemp</a> <span class="c_punctuation">()</span>
80
+ </td>
81
+ </tr>
82
+ <tr>
83
+ <td class="function_type">
84
+ <a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="returnvalue">gint</span></a>
85
+ </td>
86
+ <td class="function_name">
87
+ <a class="link" href="glib-File-Utilities.html#g-mkstemp-full" title="g_mkstemp_full ()">g_mkstemp_full</a> <span class="c_punctuation">()</span>
88
+ </td>
89
+ </tr>
90
+ <tr>
91
+ <td class="function_type">
92
+ <a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="returnvalue">gint</span></a>
93
+ </td>
94
+ <td class="function_name">
95
+ <a class="link" href="glib-File-Utilities.html#g-file-open-tmp" title="g_file_open_tmp ()">g_file_open_tmp</a> <span class="c_punctuation">()</span>
96
+ </td>
97
+ </tr>
98
+ <tr>
99
+ <td class="function_type">
100
+ <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="returnvalue">gchar</span></a> *
101
+ </td>
102
+ <td class="function_name">
103
+ <a class="link" href="glib-File-Utilities.html#g-file-read-link" title="g_file_read_link ()">g_file_read_link</a> <span class="c_punctuation">()</span>
104
+ </td>
105
+ </tr>
106
+ <tr>
107
+ <td class="function_type">
108
+ <a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="returnvalue">gint</span></a>
109
+ </td>
110
+ <td class="function_name">
111
+ <a class="link" href="glib-File-Utilities.html#g-mkdir-with-parents" title="g_mkdir_with_parents ()">g_mkdir_with_parents</a> <span class="c_punctuation">()</span>
112
+ </td>
113
+ </tr>
114
+ <tr>
115
+ <td class="function_type">
116
+ <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="returnvalue">gchar</span></a> *
117
+ </td>
118
+ <td class="function_name">
119
+ <a class="link" href="glib-File-Utilities.html#g-mkdtemp" title="g_mkdtemp ()">g_mkdtemp</a> <span class="c_punctuation">()</span>
120
+ </td>
121
+ </tr>
122
+ <tr>
123
+ <td class="function_type">
124
+ <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="returnvalue">gchar</span></a> *
125
+ </td>
126
+ <td class="function_name">
127
+ <a class="link" href="glib-File-Utilities.html#g-mkdtemp-full" title="g_mkdtemp_full ()">g_mkdtemp_full</a> <span class="c_punctuation">()</span>
128
+ </td>
129
+ </tr>
130
+ <tr>
131
+ <td class="function_type">
132
+ <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="returnvalue">gchar</span></a> *
133
+ </td>
134
+ <td class="function_name">
135
+ <a class="link" href="glib-File-Utilities.html#g-dir-make-tmp" title="g_dir_make_tmp ()">g_dir_make_tmp</a> <span class="c_punctuation">()</span>
136
+ </td>
137
+ </tr>
138
+ <tr>
139
+ <td class="function_type">
140
+ <a class="link" href="glib-File-Utilities.html#GDir" title="GDir"><span class="returnvalue">GDir</span></a> *
141
+ </td>
142
+ <td class="function_name">
143
+ <a class="link" href="glib-File-Utilities.html#g-dir-open" title="g_dir_open ()">g_dir_open</a> <span class="c_punctuation">()</span>
144
+ </td>
145
+ </tr>
146
+ <tr>
147
+ <td class="function_type">const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="returnvalue">gchar</span></a> *
148
+ </td>
149
+ <td class="function_name">
150
+ <a class="link" href="glib-File-Utilities.html#g-dir-read-name" title="g_dir_read_name ()">g_dir_read_name</a> <span class="c_punctuation">()</span>
151
+ </td>
152
+ </tr>
153
+ <tr>
154
+ <td class="function_type">
155
+ <span class="returnvalue">void</span>
156
+ </td>
157
+ <td class="function_name">
158
+ <a class="link" href="glib-File-Utilities.html#g-dir-rewind" title="g_dir_rewind ()">g_dir_rewind</a> <span class="c_punctuation">()</span>
159
+ </td>
160
+ </tr>
161
+ <tr>
162
+ <td class="function_type">
163
+ <span class="returnvalue">void</span>
164
+ </td>
165
+ <td class="function_name">
166
+ <a class="link" href="glib-File-Utilities.html#g-dir-close" title="g_dir_close ()">g_dir_close</a> <span class="c_punctuation">()</span>
167
+ </td>
168
+ </tr>
169
+ <tr>
170
+ <td class="function_type">
171
+ <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="returnvalue">GMappedFile</span></a> *
172
+ </td>
173
+ <td class="function_name">
174
+ <a class="link" href="glib-File-Utilities.html#g-mapped-file-new" title="g_mapped_file_new ()">g_mapped_file_new</a> <span class="c_punctuation">()</span>
175
+ </td>
176
+ </tr>
177
+ <tr>
178
+ <td class="function_type">
179
+ <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="returnvalue">GMappedFile</span></a> *
180
+ </td>
181
+ <td class="function_name">
182
+ <a class="link" href="glib-File-Utilities.html#g-mapped-file-new-from-fd" title="g_mapped_file_new_from_fd ()">g_mapped_file_new_from_fd</a> <span class="c_punctuation">()</span>
183
+ </td>
184
+ </tr>
185
+ <tr>
186
+ <td class="function_type">
187
+ <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="returnvalue">GMappedFile</span></a> *
188
+ </td>
189
+ <td class="function_name">
190
+ <a class="link" href="glib-File-Utilities.html#g-mapped-file-ref" title="g_mapped_file_ref ()">g_mapped_file_ref</a> <span class="c_punctuation">()</span>
191
+ </td>
192
+ </tr>
193
+ <tr>
194
+ <td class="function_type">
195
+ <span class="returnvalue">void</span>
196
+ </td>
197
+ <td class="function_name">
198
+ <a class="link" href="glib-File-Utilities.html#g-mapped-file-unref" title="g_mapped_file_unref ()">g_mapped_file_unref</a> <span class="c_punctuation">()</span>
199
+ </td>
200
+ </tr>
201
+ <tr>
202
+ <td class="function_type">
203
+ <span class="returnvalue">void</span>
204
+ </td>
205
+ <td class="function_name">
206
+ <a class="link" href="glib-File-Utilities.html#g-mapped-file-free" title="g_mapped_file_free ()">g_mapped_file_free</a> <span class="c_punctuation">()</span>
207
+ </td>
208
+ </tr>
209
+ <tr>
210
+ <td class="function_type">
211
+ <a class="link" href="glib-Basic-Types.html#gsize" title="gsize"><span class="returnvalue">gsize</span></a>
212
+ </td>
213
+ <td class="function_name">
214
+ <a class="link" href="glib-File-Utilities.html#g-mapped-file-get-length" title="g_mapped_file_get_length ()">g_mapped_file_get_length</a> <span class="c_punctuation">()</span>
215
+ </td>
216
+ </tr>
217
+ <tr>
218
+ <td class="function_type">
219
+ <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="returnvalue">gchar</span></a> *
220
+ </td>
221
+ <td class="function_name">
222
+ <a class="link" href="glib-File-Utilities.html#g-mapped-file-get-contents" title="g_mapped_file_get_contents ()">g_mapped_file_get_contents</a> <span class="c_punctuation">()</span>
223
+ </td>
224
+ </tr>
225
+ <tr>
226
+ <td class="function_type">
227
+ <a class="link" href="glib-Byte-Arrays.html#GBytes" title="GBytes"><span class="returnvalue">GBytes</span></a> *
228
+ </td>
229
+ <td class="function_name">
230
+ <a class="link" href="glib-File-Utilities.html#g-mapped-file-get-bytes" title="g_mapped_file_get_bytes ()">g_mapped_file_get_bytes</a> <span class="c_punctuation">()</span>
231
+ </td>
232
+ </tr>
233
+ <tr>
234
+ <td class="function_type">
235
+ <span class="returnvalue">int</span>
236
+ </td>
237
+ <td class="function_name">
238
+ <a class="link" href="glib-File-Utilities.html#g-open" title="g_open ()">g_open</a> <span class="c_punctuation">()</span>
239
+ </td>
240
+ </tr>
241
+ <tr>
242
+ <td class="function_type">
243
+ <span class="returnvalue">int</span>
244
+ </td>
245
+ <td class="function_name">
246
+ <a class="link" href="glib-File-Utilities.html#g-rename" title="g_rename ()">g_rename</a> <span class="c_punctuation">()</span>
247
+ </td>
248
+ </tr>
249
+ <tr>
250
+ <td class="function_type">
251
+ <span class="returnvalue">int</span>
252
+ </td>
253
+ <td class="function_name">
254
+ <a class="link" href="glib-File-Utilities.html#g-mkdir" title="g_mkdir ()">g_mkdir</a> <span class="c_punctuation">()</span>
255
+ </td>
256
+ </tr>
257
+ <tr>
258
+ <td class="function_type">
259
+ <span class="returnvalue">int</span>
260
+ </td>
261
+ <td class="function_name">
262
+ <a class="link" href="glib-File-Utilities.html#g-stat" title="g_stat ()">g_stat</a> <span class="c_punctuation">()</span>
263
+ </td>
264
+ </tr>
265
+ <tr>
266
+ <td class="function_type">
267
+ <span class="returnvalue">int</span>
268
+ </td>
269
+ <td class="function_name">
270
+ <a class="link" href="glib-File-Utilities.html#g-lstat" title="g_lstat ()">g_lstat</a> <span class="c_punctuation">()</span>
271
+ </td>
272
+ </tr>
273
+ <tr>
274
+ <td class="function_type">
275
+ <span class="returnvalue">int</span>
276
+ </td>
277
+ <td class="function_name">
278
+ <a class="link" href="glib-File-Utilities.html#g-unlink" title="g_unlink ()">g_unlink</a> <span class="c_punctuation">()</span>
279
+ </td>
280
+ </tr>
281
+ <tr>
282
+ <td class="function_type">
283
+ <span class="returnvalue">int</span>
284
+ </td>
285
+ <td class="function_name">
286
+ <a class="link" href="glib-File-Utilities.html#g-remove" title="g_remove ()">g_remove</a> <span class="c_punctuation">()</span>
287
+ </td>
288
+ </tr>
289
+ <tr>
290
+ <td class="function_type">
291
+ <span class="returnvalue">int</span>
292
+ </td>
293
+ <td class="function_name">
294
+ <a class="link" href="glib-File-Utilities.html#g-rmdir" title="g_rmdir ()">g_rmdir</a> <span class="c_punctuation">()</span>
295
+ </td>
296
+ </tr>
297
+ <tr>
298
+ <td class="function_type">
299
+ <span class="returnvalue">FILE</span> *
300
+ </td>
301
+ <td class="function_name">
302
+ <a class="link" href="glib-File-Utilities.html#g-fopen" title="g_fopen ()">g_fopen</a> <span class="c_punctuation">()</span>
303
+ </td>
304
+ </tr>
305
+ <tr>
306
+ <td class="function_type">
307
+ <span class="returnvalue">FILE</span> *
308
+ </td>
309
+ <td class="function_name">
310
+ <a class="link" href="glib-File-Utilities.html#g-freopen" title="g_freopen ()">g_freopen</a> <span class="c_punctuation">()</span>
311
+ </td>
312
+ </tr>
313
+ <tr>
314
+ <td class="function_type">
315
+ <span class="returnvalue">int</span>
316
+ </td>
317
+ <td class="function_name">
318
+ <a class="link" href="glib-File-Utilities.html#g-chmod" title="g_chmod ()">g_chmod</a> <span class="c_punctuation">()</span>
319
+ </td>
320
+ </tr>
321
+ <tr>
322
+ <td class="function_type">
323
+ <span class="returnvalue">int</span>
324
+ </td>
325
+ <td class="function_name">
326
+ <a class="link" href="glib-File-Utilities.html#g-access" title="g_access ()">g_access</a> <span class="c_punctuation">()</span>
327
+ </td>
328
+ </tr>
329
+ <tr>
330
+ <td class="function_type">
331
+ <span class="returnvalue">int</span>
332
+ </td>
333
+ <td class="function_name">
334
+ <a class="link" href="glib-File-Utilities.html#g-creat" title="g_creat ()">g_creat</a> <span class="c_punctuation">()</span>
335
+ </td>
336
+ </tr>
337
+ <tr>
338
+ <td class="function_type">
339
+ <span class="returnvalue">int</span>
340
+ </td>
341
+ <td class="function_name">
342
+ <a class="link" href="glib-File-Utilities.html#g-chdir" title="g_chdir ()">g_chdir</a> <span class="c_punctuation">()</span>
343
+ </td>
344
+ </tr>
345
+ <tr>
346
+ <td class="function_type">
347
+ <span class="returnvalue">int</span>
348
+ </td>
349
+ <td class="function_name">
350
+ <a class="link" href="glib-File-Utilities.html#g-utime" title="g_utime ()">g_utime</a> <span class="c_punctuation">()</span>
351
+ </td>
352
+ </tr>
353
+ <tr>
354
+ <td class="function_type">
355
+ <a class="link" href="glib-Basic-Types.html#gboolean" title="gboolean"><span class="returnvalue">gboolean</span></a>
356
+ </td>
357
+ <td class="function_name">
358
+ <a class="link" href="glib-File-Utilities.html#g-close" title="g_close ()">g_close</a> <span class="c_punctuation">()</span>
359
+ </td>
360
+ </tr>
361
+ </tbody>
362
+ </table></div>
363
+ </div>
364
+ <div class="refsect1">
365
+ <a name="glib-File-Utilities.other"></a><h2>Types and Values</h2>
366
+ <div class="informaltable"><table width="100%" border="0">
367
+ <colgroup>
368
+ <col width="150px" class="name">
369
+ <col class="description">
370
+ </colgroup>
371
+ <tbody>
372
+ <tr>
373
+ <td class="datatype_keyword">enum</td>
374
+ <td class="function_name"><a class="link" href="glib-File-Utilities.html#GFileError" title="enum GFileError">GFileError</a></td>
375
+ </tr>
376
+ <tr>
377
+ <td class="define_keyword">#define</td>
378
+ <td class="function_name"><a class="link" href="glib-File-Utilities.html#G-FILE-ERROR:CAPS" title="G_FILE_ERROR">G_FILE_ERROR</a></td>
379
+ </tr>
380
+ <tr>
381
+ <td class="datatype_keyword">enum</td>
382
+ <td class="function_name"><a class="link" href="glib-File-Utilities.html#GFileTest" title="enum GFileTest">GFileTest</a></td>
383
+ </tr>
384
+ <tr>
385
+ <td class="datatype_keyword"> </td>
386
+ <td class="function_name"><a class="link" href="glib-File-Utilities.html#GDir" title="GDir">GDir</a></td>
387
+ </tr>
388
+ <tr>
389
+ <td class="datatype_keyword"> </td>
390
+ <td class="function_name"><a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile">GMappedFile</a></td>
391
+ </tr>
392
+ <tr>
393
+ <td class="typedef_keyword">typedef</td>
394
+ <td class="function_name"><a class="link" href="glib-File-Utilities.html#GStatBuf" title="GStatBuf">GStatBuf</a></td>
395
+ </tr>
396
+ </tbody>
397
+ </table></div>
398
+ </div>
399
+ <div class="refsect1">
400
+ <a name="glib-File-Utilities.includes"></a><h2>Includes</h2>
401
+ <pre class="synopsis">#include &lt;glib.h&gt;
402
+ #include &lt;glib/gstdio.h&gt;
403
+ </pre>
404
+ </div>
405
+ <div class="refsect1">
406
+ <a name="glib-File-Utilities.description"></a><h2>Description</h2>
407
+ <p>There is a group of functions which wrap the common POSIX functions
408
+ dealing with filenames (<a class="link" href="glib-File-Utilities.html#g-open" title="g_open ()"><code class="function">g_open()</code></a>, <a class="link" href="glib-File-Utilities.html#g-rename" title="g_rename ()"><code class="function">g_rename()</code></a>, <a class="link" href="glib-File-Utilities.html#g-mkdir" title="g_mkdir ()"><code class="function">g_mkdir()</code></a>, <a class="link" href="glib-File-Utilities.html#g-stat" title="g_stat ()"><code class="function">g_stat()</code></a>,
409
+ <a class="link" href="glib-File-Utilities.html#g-unlink" title="g_unlink ()"><code class="function">g_unlink()</code></a>, <a class="link" href="glib-File-Utilities.html#g-remove" title="g_remove ()"><code class="function">g_remove()</code></a>, <a class="link" href="glib-File-Utilities.html#g-fopen" title="g_fopen ()"><code class="function">g_fopen()</code></a>, <a class="link" href="glib-File-Utilities.html#g-freopen" title="g_freopen ()"><code class="function">g_freopen()</code></a>). The point of these
410
+ wrappers is to make it possible to handle file names with any Unicode
411
+ characters in them on Windows without having to use ifdefs and the
412
+ wide character API in the application code.</p>
413
+ <p>The pathname argument should be in the GLib file name encoding.
414
+ On POSIX this is the actual on-disk encoding which might correspond
415
+ to the locale settings of the process (or the <code class="literal">G_FILENAME_ENCODING</code>
416
+ environment variable), or not.</p>
417
+ <p>On Windows the GLib file name encoding is UTF-8. Note that the
418
+ Microsoft C library does not use UTF-8, but has separate APIs for
419
+ current system code page and wide characters (UTF-16). The GLib
420
+ wrappers call the wide character API if present (on modern Windows
421
+ systems), otherwise convert to/from the system code page.</p>
422
+ <p>Another group of functions allows to open and read directories
423
+ in the GLib file name encoding. These are <a class="link" href="glib-File-Utilities.html#g-dir-open" title="g_dir_open ()"><code class="function">g_dir_open()</code></a>,
424
+ <a class="link" href="glib-File-Utilities.html#g-dir-read-name" title="g_dir_read_name ()"><code class="function">g_dir_read_name()</code></a>, <a class="link" href="glib-File-Utilities.html#g-dir-rewind" title="g_dir_rewind ()"><code class="function">g_dir_rewind()</code></a>, <a class="link" href="glib-File-Utilities.html#g-dir-close" title="g_dir_close ()"><code class="function">g_dir_close()</code></a>.</p>
425
+ </div>
426
+ <div class="refsect1">
427
+ <a name="glib-File-Utilities.functions_details"></a><h2>Functions</h2>
428
+ <div class="refsect2">
429
+ <a name="g-file-error-from-errno"></a><h3>g_file_error_from_errno ()</h3>
430
+ <pre class="programlisting"><a class="link" href="glib-File-Utilities.html#GFileError" title="enum GFileError"><span class="returnvalue">GFileError</span></a>
431
+ g_file_error_from_errno (<em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="type">gint</span></a> err_no</code></em>);</pre>
432
+ <p>Gets a <a class="link" href="glib-File-Utilities.html#GFileError" title="enum GFileError"><span class="type">GFileError</span></a> constant based on the passed-in <em class="parameter"><code>err_no</code></em>
433
+ .
434
+ For example, if you pass in <code class="literal">EEXIST</code> this function returns
435
+ <a class="link" href="glib-File-Utilities.html#G-FILE-ERROR-EXIST:CAPS"><span class="type">G_FILE_ERROR_EXIST</span></a>. Unlike <code class="literal">errno</code> values, you can portably
436
+ assume that all <a class="link" href="glib-File-Utilities.html#GFileError" title="enum GFileError"><span class="type">GFileError</span></a> values will exist.</p>
437
+ <p>Normally a <a class="link" href="glib-File-Utilities.html#GFileError" title="enum GFileError"><span class="type">GFileError</span></a> value goes into a <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a> returned
438
+ from a function that manipulates files. So you would use
439
+ <a class="link" href="glib-File-Utilities.html#g-file-error-from-errno" title="g_file_error_from_errno ()"><code class="function">g_file_error_from_errno()</code></a> when constructing a <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a>.</p>
440
+ <div class="refsect3">
441
+ <a name="id-1.5.18.7.2.6"></a><h4>Parameters</h4>
442
+ <div class="informaltable"><table width="100%" border="0">
443
+ <colgroup>
444
+ <col width="150px" class="parameters_name">
445
+ <col class="parameters_description">
446
+ <col width="200px" class="parameters_annotations">
447
+ </colgroup>
448
+ <tbody><tr>
449
+ <td class="parameter_name"><p>err_no</p></td>
450
+ <td class="parameter_description"><p>an "errno" value</p></td>
451
+ <td class="parameter_annotations"> </td>
452
+ </tr></tbody>
453
+ </table></div>
454
+ </div>
455
+ <div class="refsect3">
456
+ <a name="id-1.5.18.7.2.7"></a><h4>Returns</h4>
457
+ <p> <a class="link" href="glib-File-Utilities.html#GFileError" title="enum GFileError"><span class="type">GFileError</span></a> corresponding to the given <em class="parameter"><code>errno</code></em>
458
+ </p>
459
+ <p></p>
460
+ </div>
461
+ </div>
462
+ <hr>
463
+ <div class="refsect2">
464
+ <a name="g-file-get-contents"></a><h3>g_file_get_contents ()</h3>
465
+ <pre class="programlisting"><a class="link" href="glib-Basic-Types.html#gboolean" title="gboolean"><span class="returnvalue">gboolean</span></a>
466
+ g_file_get_contents (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
467
+ <em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> **contents</code></em>,
468
+ <em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gsize" title="gsize"><span class="type">gsize</span></a> *length</code></em>,
469
+ <em class="parameter"><code><a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a> **error</code></em>);</pre>
470
+ <p>Reads an entire file into allocated memory, with good error
471
+ checking.</p>
472
+ <p>If the call was successful, it returns <a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a> and sets <em class="parameter"><code>contents</code></em>
473
+ to the file
474
+ contents and <em class="parameter"><code>length</code></em>
475
+ to the length of the file contents in bytes. The string
476
+ stored in <em class="parameter"><code>contents</code></em>
477
+ will be nul-terminated, so for text files you can pass
478
+ <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> for the <em class="parameter"><code>length</code></em>
479
+ argument. If the call was not successful, it returns
480
+ <a class="link" href="glib-Standard-Macros.html#FALSE:CAPS" title="FALSE"><code class="literal">FALSE</code></a> and sets <em class="parameter"><code>error</code></em>
481
+ . The error domain is <a class="link" href="glib-File-Utilities.html#G-FILE-ERROR:CAPS" title="G_FILE_ERROR"><span class="type">G_FILE_ERROR</span></a>. Possible error
482
+ codes are those in the <a class="link" href="glib-File-Utilities.html#GFileError" title="enum GFileError"><span class="type">GFileError</span></a> enumeration. In the error case,
483
+ <em class="parameter"><code>contents</code></em>
484
+ is set to <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> and <em class="parameter"><code>length</code></em>
485
+ is set to zero.</p>
486
+ <div class="refsect3">
487
+ <a name="id-1.5.18.7.3.6"></a><h4>Parameters</h4>
488
+ <div class="informaltable"><table width="100%" border="0">
489
+ <colgroup>
490
+ <col width="150px" class="parameters_name">
491
+ <col class="parameters_description">
492
+ <col width="200px" class="parameters_annotations">
493
+ </colgroup>
494
+ <tbody>
495
+ <tr>
496
+ <td class="parameter_name"><p>filename</p></td>
497
+ <td class="parameter_description"><p> name of a file to read contents from, in the GLib file name encoding. </p></td>
498
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> filename]</span></td>
499
+ </tr>
500
+ <tr>
501
+ <td class="parameter_name"><p>contents</p></td>
502
+ <td class="parameter_description"><p> location to store an allocated string, use <a class="link" href="glib-Memory-Allocation.html#g-free" title="g_free ()"><code class="function">g_free()</code></a> to free
503
+ the returned string. </p></td>
504
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=length][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> guint8]</span></td>
505
+ </tr>
506
+ <tr>
507
+ <td class="parameter_name"><p>length</p></td>
508
+ <td class="parameter_description"><p> location to store length in bytes of the contents, or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a>. </p></td>
509
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
510
+ </tr>
511
+ <tr>
512
+ <td class="parameter_name"><p>error</p></td>
513
+ <td class="parameter_description"><p>return location for a <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a>, or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a></p></td>
514
+ <td class="parameter_annotations"> </td>
515
+ </tr>
516
+ </tbody>
517
+ </table></div>
518
+ </div>
519
+ <div class="refsect3">
520
+ <a name="id-1.5.18.7.3.7"></a><h4>Returns</h4>
521
+ <p> <a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a> on success, <a class="link" href="glib-Standard-Macros.html#FALSE:CAPS" title="FALSE"><code class="literal">FALSE</code></a> if an error occurred</p>
522
+ <p></p>
523
+ </div>
524
+ </div>
525
+ <hr>
526
+ <div class="refsect2">
527
+ <a name="g-file-set-contents"></a><h3>g_file_set_contents ()</h3>
528
+ <pre class="programlisting"><a class="link" href="glib-Basic-Types.html#gboolean" title="gboolean"><span class="returnvalue">gboolean</span></a>
529
+ g_file_set_contents (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
530
+ <em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *contents</code></em>,
531
+ <em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gssize" title="gssize"><span class="type">gssize</span></a> length</code></em>,
532
+ <em class="parameter"><code><a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a> **error</code></em>);</pre>
533
+ <p>Writes all of <em class="parameter"><code>contents</code></em>
534
+ to a file named <em class="parameter"><code>filename</code></em>
535
+ , with good error checking.
536
+ If a file called <em class="parameter"><code>filename</code></em>
537
+ already exists it will be overwritten.</p>
538
+ <p>This write is atomic in the sense that it is first written to a temporary
539
+ file which is then renamed to the final name. Notes:</p>
540
+ <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
541
+ <li class="listitem"><p>On UNIX, if <em class="parameter"><code>filename</code></em>
542
+ already exists hard links to <em class="parameter"><code>filename</code></em>
543
+ will break.
544
+ Also since the file is recreated, existing permissions, access control
545
+ lists, metadata etc. may be lost. If <em class="parameter"><code>filename</code></em>
546
+ is a symbolic link,
547
+ the link itself will be replaced, not the linked file.</p></li>
548
+ <li class="listitem"><p>On Windows renaming a file will not remove an existing file with the
549
+ new name, so on Windows there is a race condition between the existing
550
+ file being removed and the temporary file being renamed.</p></li>
551
+ <li class="listitem"><p>On Windows there is no way to remove a file that is open to some
552
+ process, or mapped into memory. Thus, this function will fail if
553
+ <em class="parameter"><code>filename</code></em>
554
+ already exists and is open.</p></li>
555
+ </ul></div>
556
+ <p>If the call was successful, it returns <a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a>. If the call was not successful,
557
+ it returns <a class="link" href="glib-Standard-Macros.html#FALSE:CAPS" title="FALSE"><code class="literal">FALSE</code></a> and sets <em class="parameter"><code>error</code></em>
558
+ . The error domain is <a class="link" href="glib-File-Utilities.html#G-FILE-ERROR:CAPS" title="G_FILE_ERROR"><span class="type">G_FILE_ERROR</span></a>.
559
+ Possible error codes are those in the <a class="link" href="glib-File-Utilities.html#GFileError" title="enum GFileError"><span class="type">GFileError</span></a> enumeration.</p>
560
+ <p>Note that the name for the temporary file is constructed by appending up
561
+ to 7 characters to <em class="parameter"><code>filename</code></em>
562
+ .</p>
563
+ <div class="refsect3">
564
+ <a name="id-1.5.18.7.4.9"></a><h4>Parameters</h4>
565
+ <div class="informaltable"><table width="100%" border="0">
566
+ <colgroup>
567
+ <col width="150px" class="parameters_name">
568
+ <col class="parameters_description">
569
+ <col width="200px" class="parameters_annotations">
570
+ </colgroup>
571
+ <tbody>
572
+ <tr>
573
+ <td class="parameter_name"><p>filename</p></td>
574
+ <td class="parameter_description"><p> name of a file to write <em class="parameter"><code>contents</code></em>
575
+ to, in the GLib file name
576
+ encoding. </p></td>
577
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> filename]</span></td>
578
+ </tr>
579
+ <tr>
580
+ <td class="parameter_name"><p>contents</p></td>
581
+ <td class="parameter_description"><p> string to write to the file. </p></td>
582
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=length][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> guint8]</span></td>
583
+ </tr>
584
+ <tr>
585
+ <td class="parameter_name"><p>length</p></td>
586
+ <td class="parameter_description"><p>length of <em class="parameter"><code>contents</code></em>
587
+ , or -1 if <em class="parameter"><code>contents</code></em>
588
+ is a nul-terminated string</p></td>
589
+ <td class="parameter_annotations"> </td>
590
+ </tr>
591
+ <tr>
592
+ <td class="parameter_name"><p>error</p></td>
593
+ <td class="parameter_description"><p>return location for a <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a>, or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a></p></td>
594
+ <td class="parameter_annotations"> </td>
595
+ </tr>
596
+ </tbody>
597
+ </table></div>
598
+ </div>
599
+ <div class="refsect3">
600
+ <a name="id-1.5.18.7.4.10"></a><h4>Returns</h4>
601
+ <p> <a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a> on success, <a class="link" href="glib-Standard-Macros.html#FALSE:CAPS" title="FALSE"><code class="literal">FALSE</code></a> if an error occurred</p>
602
+ <p></p>
603
+ </div>
604
+ <p class="since">Since 2.8</p>
605
+ </div>
606
+ <hr>
607
+ <div class="refsect2">
608
+ <a name="g-file-test"></a><h3>g_file_test ()</h3>
609
+ <pre class="programlisting"><a class="link" href="glib-Basic-Types.html#gboolean" title="gboolean"><span class="returnvalue">gboolean</span></a>
610
+ g_file_test (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
611
+ <em class="parameter"><code><a class="link" href="glib-File-Utilities.html#GFileTest" title="enum GFileTest"><span class="type">GFileTest</span></a> test</code></em>);</pre>
612
+ <p>Returns <a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a> if any of the tests in the bitfield <em class="parameter"><code>test</code></em>
613
+ are
614
+ <a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a>. For example, <code class="literal">(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)</code>
615
+ will return <a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a> if the file exists; the check whether it's a
616
+ directory doesn't matter since the existence test is <a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a>. With
617
+ the current set of available tests, there's no point passing in
618
+ more than one test at a time.</p>
619
+ <p>Apart from <a class="link" href="glib-File-Utilities.html#G-FILE-TEST-IS-SYMLINK:CAPS"><code class="literal">G_FILE_TEST_IS_SYMLINK</code></a> all tests follow symbolic links,
620
+ so for a symbolic link to a regular file <a class="link" href="glib-File-Utilities.html#g-file-test" title="g_file_test ()"><code class="function">g_file_test()</code></a> will return
621
+ <a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a> for both <a class="link" href="glib-File-Utilities.html#G-FILE-TEST-IS-SYMLINK:CAPS"><code class="literal">G_FILE_TEST_IS_SYMLINK</code></a> and <a class="link" href="glib-File-Utilities.html#G-FILE-TEST-IS-REGULAR:CAPS"><code class="literal">G_FILE_TEST_IS_REGULAR</code></a>.</p>
622
+ <p>Note, that for a dangling symbolic link <a class="link" href="glib-File-Utilities.html#g-file-test" title="g_file_test ()"><code class="function">g_file_test()</code></a> will return
623
+ <a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a> for <a class="link" href="glib-File-Utilities.html#G-FILE-TEST-IS-SYMLINK:CAPS"><code class="literal">G_FILE_TEST_IS_SYMLINK</code></a> and <a class="link" href="glib-Standard-Macros.html#FALSE:CAPS" title="FALSE"><code class="literal">FALSE</code></a> for all other flags.</p>
624
+ <p>You should never use <a class="link" href="glib-File-Utilities.html#g-file-test" title="g_file_test ()"><code class="function">g_file_test()</code></a> to test whether it is safe
625
+ to perform an operation, because there is always the possibility
626
+ of the condition changing before you actually perform the operation.
627
+ For example, you might think you could use <a class="link" href="glib-File-Utilities.html#G-FILE-TEST-IS-SYMLINK:CAPS"><code class="literal">G_FILE_TEST_IS_SYMLINK</code></a>
628
+ to know whether it is safe to write to a file without being
629
+ tricked into writing into a different location. It doesn't work!</p>
630
+ <div class="informalexample">
631
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
632
+ <tbody>
633
+ <tr>
634
+ <td class="listing_lines" align="right"><pre>1
635
+ 2
636
+ 3
637
+ 4
638
+ 5
639
+ 6</pre></td>
640
+ <td class="listing_code"><pre class="programlisting"><span class="comment">// DON'T DO THIS</span>
641
+ <span class="keyword">if</span><span class="normal"> </span><span class="symbol">(!</span><span class="function"><a href="glib-File-Utilities.html#g-file-test">g_file_test</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">filename</span><span class="symbol">,</span><span class="normal"> G_FILE_TEST_IS_SYMLINK</span><span class="symbol">))</span><span class="normal"> </span>
642
+ <span class="normal"> </span><span class="cbracket">{</span>
643
+ <span class="normal"> fd </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="glib-File-Utilities.html#g-open">g_open</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">filename</span><span class="symbol">,</span><span class="normal"> O_WRONLY</span><span class="symbol">);</span>
644
+ <span class="normal"> </span><span class="comment">// write to fd</span>
645
+ <span class="normal"> </span><span class="cbracket">}</span></pre></td>
646
+ </tr>
647
+ </tbody>
648
+ </table>
649
+ </div>
650
+
651
+ <p></p>
652
+ <p>Another thing to note is that <a class="link" href="glib-File-Utilities.html#G-FILE-TEST-EXISTS:CAPS"><code class="literal">G_FILE_TEST_EXISTS</code></a> and
653
+ <a class="link" href="glib-File-Utilities.html#G-FILE-TEST-IS-EXECUTABLE:CAPS"><code class="literal">G_FILE_TEST_IS_EXECUTABLE</code></a> are implemented using the <code class="function">access()</code>
654
+ system call. This usually doesn't matter, but if your program
655
+ is setuid or setgid it means that these tests will give you
656
+ the answer for the real user ID and group ID, rather than the
657
+ effective user ID and group ID.</p>
658
+ <p>On Windows, there are no symlinks, so testing for
659
+ <a class="link" href="glib-File-Utilities.html#G-FILE-TEST-IS-SYMLINK:CAPS"><code class="literal">G_FILE_TEST_IS_SYMLINK</code></a> will always return <a class="link" href="glib-Standard-Macros.html#FALSE:CAPS" title="FALSE"><code class="literal">FALSE</code></a>. Testing for
660
+ <a class="link" href="glib-File-Utilities.html#G-FILE-TEST-IS-EXECUTABLE:CAPS"><code class="literal">G_FILE_TEST_IS_EXECUTABLE</code></a> will just check that the file exists and
661
+ its name indicates that it is executable, checking for well-known
662
+ extensions and those listed in the <code class="literal">PATHEXT</code> environment variable.</p>
663
+ <div class="refsect3">
664
+ <a name="id-1.5.18.7.5.12"></a><h4>Parameters</h4>
665
+ <div class="informaltable"><table width="100%" border="0">
666
+ <colgroup>
667
+ <col width="150px" class="parameters_name">
668
+ <col class="parameters_description">
669
+ <col width="200px" class="parameters_annotations">
670
+ </colgroup>
671
+ <tbody>
672
+ <tr>
673
+ <td class="parameter_name"><p>filename</p></td>
674
+ <td class="parameter_description"><p>a filename to test in the GLib file name encoding</p></td>
675
+ <td class="parameter_annotations"> </td>
676
+ </tr>
677
+ <tr>
678
+ <td class="parameter_name"><p>test</p></td>
679
+ <td class="parameter_description"><p>bitfield of <a class="link" href="glib-File-Utilities.html#GFileTest" title="enum GFileTest"><span class="type">GFileTest</span></a> flags</p></td>
680
+ <td class="parameter_annotations"> </td>
681
+ </tr>
682
+ </tbody>
683
+ </table></div>
684
+ </div>
685
+ <div class="refsect3">
686
+ <a name="id-1.5.18.7.5.13"></a><h4>Returns</h4>
687
+ <p> whether a test was <a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a></p>
688
+ <p></p>
689
+ </div>
690
+ </div>
691
+ <hr>
692
+ <div class="refsect2">
693
+ <a name="g-mkstemp"></a><h3>g_mkstemp ()</h3>
694
+ <pre class="programlisting"><a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="returnvalue">gint</span></a>
695
+ g_mkstemp (<em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *tmpl</code></em>);</pre>
696
+ <p>Opens a temporary file. See the <code class="function">mkstemp()</code> documentation
697
+ on most UNIX-like systems.</p>
698
+ <p>The parameter is a string that should follow the rules for
699
+ <code class="function">mkstemp()</code> templates, i.e. contain the string "XXXXXX".
700
+ <a class="link" href="glib-File-Utilities.html#g-mkstemp" title="g_mkstemp ()"><code class="function">g_mkstemp()</code></a> is slightly more flexible than <code class="function">mkstemp()</code> in that the
701
+ sequence does not have to occur at the very end of the template.
702
+ The X string will be modified to form the name of a file that
703
+ didn't exist. The string should be in the GLib file name encoding.
704
+ Most importantly, on Windows it should be in UTF-8.</p>
705
+ <div class="refsect3">
706
+ <a name="id-1.5.18.7.6.6"></a><h4>Parameters</h4>
707
+ <div class="informaltable"><table width="100%" border="0">
708
+ <colgroup>
709
+ <col width="150px" class="parameters_name">
710
+ <col class="parameters_description">
711
+ <col width="200px" class="parameters_annotations">
712
+ </colgroup>
713
+ <tbody><tr>
714
+ <td class="parameter_name"><p>tmpl</p></td>
715
+ <td class="parameter_description"><p> template filename. </p></td>
716
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> filename]</span></td>
717
+ </tr></tbody>
718
+ </table></div>
719
+ </div>
720
+ <div class="refsect3">
721
+ <a name="id-1.5.18.7.6.7"></a><h4>Returns</h4>
722
+ <p> A file handle (as from <code class="function">open()</code>) to the file
723
+ opened for reading and writing. The file is opened in binary
724
+ mode on platforms where there is a difference. The file handle
725
+ should be closed with <code class="function">close()</code>. In case of errors, -1 is
726
+ returned and <code class="literal">errno</code> will be set.</p>
727
+ <p></p>
728
+ </div>
729
+ </div>
730
+ <hr>
731
+ <div class="refsect2">
732
+ <a name="g-mkstemp-full"></a><h3>g_mkstemp_full ()</h3>
733
+ <pre class="programlisting"><a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="returnvalue">gint</span></a>
734
+ g_mkstemp_full (<em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *tmpl</code></em>,
735
+ <em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="type">gint</span></a> flags</code></em>,
736
+ <em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="type">gint</span></a> mode</code></em>);</pre>
737
+ <p>Opens a temporary file. See the <code class="function">mkstemp()</code> documentation
738
+ on most UNIX-like systems.</p>
739
+ <p>The parameter is a string that should follow the rules for
740
+ <code class="function">mkstemp()</code> templates, i.e. contain the string "XXXXXX".
741
+ <a class="link" href="glib-File-Utilities.html#g-mkstemp-full" title="g_mkstemp_full ()"><code class="function">g_mkstemp_full()</code></a> is slightly more flexible than <code class="function">mkstemp()</code>
742
+ in that the sequence does not have to occur at the very end of the
743
+ template and you can pass a <em class="parameter"><code>mode</code></em>
744
+ and additional <em class="parameter"><code>flags</code></em>
745
+ . The X
746
+ string will be modified to form the name of a file that didn't exist.
747
+ The string should be in the GLib file name encoding. Most importantly,
748
+ on Windows it should be in UTF-8.</p>
749
+ <div class="refsect3">
750
+ <a name="id-1.5.18.7.7.6"></a><h4>Parameters</h4>
751
+ <div class="informaltable"><table width="100%" border="0">
752
+ <colgroup>
753
+ <col width="150px" class="parameters_name">
754
+ <col class="parameters_description">
755
+ <col width="200px" class="parameters_annotations">
756
+ </colgroup>
757
+ <tbody>
758
+ <tr>
759
+ <td class="parameter_name"><p>tmpl</p></td>
760
+ <td class="parameter_description"><p> template filename. </p></td>
761
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> filename]</span></td>
762
+ </tr>
763
+ <tr>
764
+ <td class="parameter_name"><p>flags</p></td>
765
+ <td class="parameter_description"><p>flags to pass to an <code class="function">open()</code> call in addition to O_EXCL
766
+ and O_CREAT, which are passed automatically</p></td>
767
+ <td class="parameter_annotations"> </td>
768
+ </tr>
769
+ <tr>
770
+ <td class="parameter_name"><p>mode</p></td>
771
+ <td class="parameter_description"><p>permissions to create the temporary file with</p></td>
772
+ <td class="parameter_annotations"> </td>
773
+ </tr>
774
+ </tbody>
775
+ </table></div>
776
+ </div>
777
+ <div class="refsect3">
778
+ <a name="id-1.5.18.7.7.7"></a><h4>Returns</h4>
779
+ <p> A file handle (as from <code class="function">open()</code>) to the file
780
+ opened for reading and writing. The file handle should be
781
+ closed with <code class="function">close()</code>. In case of errors, -1 is returned
782
+ and <code class="literal">errno</code> will be set.</p>
783
+ <p></p>
784
+ </div>
785
+ <p class="since">Since 2.22</p>
786
+ </div>
787
+ <hr>
788
+ <div class="refsect2">
789
+ <a name="g-file-open-tmp"></a><h3>g_file_open_tmp ()</h3>
790
+ <pre class="programlisting"><a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="returnvalue">gint</span></a>
791
+ g_file_open_tmp (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *tmpl</code></em>,
792
+ <em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> **name_used</code></em>,
793
+ <em class="parameter"><code><a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a> **error</code></em>);</pre>
794
+ <p>Opens a file for writing in the preferred directory for temporary
795
+ files (as returned by <a class="link" href="glib-Miscellaneous-Utility-Functions.html#g-get-tmp-dir" title="g_get_tmp_dir ()"><code class="function">g_get_tmp_dir()</code></a>).</p>
796
+ <p><em class="parameter"><code>tmpl</code></em>
797
+ should be a string in the GLib file name encoding containing
798
+ a sequence of six 'X' characters, as the parameter to <a class="link" href="glib-File-Utilities.html#g-mkstemp" title="g_mkstemp ()"><code class="function">g_mkstemp()</code></a>.
799
+ However, unlike these functions, the template should only be a
800
+ basename, no directory components are allowed. If template is
801
+ <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a>, a default template is used.</p>
802
+ <p>Note that in contrast to <a class="link" href="glib-File-Utilities.html#g-mkstemp" title="g_mkstemp ()"><code class="function">g_mkstemp()</code></a> (and <code class="function">mkstemp()</code>) <em class="parameter"><code>tmpl</code></em>
803
+ is not
804
+ modified, and might thus be a read-only literal string.</p>
805
+ <p>Upon success, and if <em class="parameter"><code>name_used</code></em>
806
+ is non-<a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a>, the actual name used
807
+ is returned in <em class="parameter"><code>name_used</code></em>
808
+ . This string should be freed with <a class="link" href="glib-Memory-Allocation.html#g-free" title="g_free ()"><code class="function">g_free()</code></a>
809
+ when not needed any longer. The returned name is in the GLib file
810
+ name encoding.</p>
811
+ <div class="refsect3">
812
+ <a name="id-1.5.18.7.8.8"></a><h4>Parameters</h4>
813
+ <div class="informaltable"><table width="100%" border="0">
814
+ <colgroup>
815
+ <col width="150px" class="parameters_name">
816
+ <col class="parameters_description">
817
+ <col width="200px" class="parameters_annotations">
818
+ </colgroup>
819
+ <tbody>
820
+ <tr>
821
+ <td class="parameter_name"><p>tmpl</p></td>
822
+ <td class="parameter_description"><p> Template for file name, as in
823
+ <a class="link" href="glib-File-Utilities.html#g-mkstemp" title="g_mkstemp ()"><code class="function">g_mkstemp()</code></a>, basename only, or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> for a default template. </p></td>
824
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> filename][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
825
+ </tr>
826
+ <tr>
827
+ <td class="parameter_name"><p>name_used</p></td>
828
+ <td class="parameter_description"><p> location to store actual name used,
829
+ or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a>. </p></td>
830
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> filename]</span></td>
831
+ </tr>
832
+ <tr>
833
+ <td class="parameter_name"><p>error</p></td>
834
+ <td class="parameter_description"><p>return location for a <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a></p></td>
835
+ <td class="parameter_annotations"> </td>
836
+ </tr>
837
+ </tbody>
838
+ </table></div>
839
+ </div>
840
+ <div class="refsect3">
841
+ <a name="id-1.5.18.7.8.9"></a><h4>Returns</h4>
842
+ <p> A file handle (as from <code class="function">open()</code>) to the file opened for
843
+ reading and writing. The file is opened in binary mode on platforms
844
+ where there is a difference. The file handle should be closed with
845
+ <code class="function">close()</code>. In case of errors, -1 is returned and <em class="parameter"><code>error</code></em>
846
+ will be set.</p>
847
+ <p></p>
848
+ </div>
849
+ </div>
850
+ <hr>
851
+ <div class="refsect2">
852
+ <a name="g-file-read-link"></a><h3>g_file_read_link ()</h3>
853
+ <pre class="programlisting"><a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="returnvalue">gchar</span></a> *
854
+ g_file_read_link (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
855
+ <em class="parameter"><code><a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a> **error</code></em>);</pre>
856
+ <p>Reads the contents of the symbolic link <em class="parameter"><code>filename</code></em>
857
+ like the POSIX
858
+ <code class="function">readlink()</code> function. The returned string is in the encoding used
859
+ for filenames. Use <a class="link" href="glib-Character-Set-Conversion.html#g-filename-to-utf8" title="g_filename_to_utf8 ()"><code class="function">g_filename_to_utf8()</code></a> to convert it to UTF-8.</p>
860
+ <div class="refsect3">
861
+ <a name="id-1.5.18.7.9.5"></a><h4>Parameters</h4>
862
+ <div class="informaltable"><table width="100%" border="0">
863
+ <colgroup>
864
+ <col width="150px" class="parameters_name">
865
+ <col class="parameters_description">
866
+ <col width="200px" class="parameters_annotations">
867
+ </colgroup>
868
+ <tbody>
869
+ <tr>
870
+ <td class="parameter_name"><p>filename</p></td>
871
+ <td class="parameter_description"><p>the symbolic link</p></td>
872
+ <td class="parameter_annotations"> </td>
873
+ </tr>
874
+ <tr>
875
+ <td class="parameter_name"><p>error</p></td>
876
+ <td class="parameter_description"><p>return location for a <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a></p></td>
877
+ <td class="parameter_annotations"> </td>
878
+ </tr>
879
+ </tbody>
880
+ </table></div>
881
+ </div>
882
+ <div class="refsect3">
883
+ <a name="id-1.5.18.7.9.6"></a><h4>Returns</h4>
884
+ <p> A newly-allocated string with the contents of the symbolic link,
885
+ or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> if an error occurred.</p>
886
+ <p></p>
887
+ </div>
888
+ <p class="since">Since 2.4</p>
889
+ </div>
890
+ <hr>
891
+ <div class="refsect2">
892
+ <a name="g-mkdir-with-parents"></a><h3>g_mkdir_with_parents ()</h3>
893
+ <pre class="programlisting"><a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="returnvalue">gint</span></a>
894
+ g_mkdir_with_parents (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *pathname</code></em>,
895
+ <em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="type">gint</span></a> mode</code></em>);</pre>
896
+ <p>Create a directory if it doesn't already exist. Create intermediate
897
+ parent directories as needed, too.</p>
898
+ <div class="refsect3">
899
+ <a name="id-1.5.18.7.10.5"></a><h4>Parameters</h4>
900
+ <div class="informaltable"><table width="100%" border="0">
901
+ <colgroup>
902
+ <col width="150px" class="parameters_name">
903
+ <col class="parameters_description">
904
+ <col width="200px" class="parameters_annotations">
905
+ </colgroup>
906
+ <tbody>
907
+ <tr>
908
+ <td class="parameter_name"><p>pathname</p></td>
909
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding</p></td>
910
+ <td class="parameter_annotations"> </td>
911
+ </tr>
912
+ <tr>
913
+ <td class="parameter_name"><p>mode</p></td>
914
+ <td class="parameter_description"><p>permissions to use for newly created directories</p></td>
915
+ <td class="parameter_annotations"> </td>
916
+ </tr>
917
+ </tbody>
918
+ </table></div>
919
+ </div>
920
+ <div class="refsect3">
921
+ <a name="id-1.5.18.7.10.6"></a><h4>Returns</h4>
922
+ <p> 0 if the directory already exists, or was successfully
923
+ created. Returns -1 if an error occurred, with errno set.</p>
924
+ <p></p>
925
+ </div>
926
+ <p class="since">Since 2.8</p>
927
+ </div>
928
+ <hr>
929
+ <div class="refsect2">
930
+ <a name="g-mkdtemp"></a><h3>g_mkdtemp ()</h3>
931
+ <pre class="programlisting"><a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="returnvalue">gchar</span></a> *
932
+ g_mkdtemp (<em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *tmpl</code></em>);</pre>
933
+ <p>Creates a temporary directory. See the <code class="function">mkdtemp()</code> documentation
934
+ on most UNIX-like systems.</p>
935
+ <p>The parameter is a string that should follow the rules for
936
+ <code class="function">mkdtemp()</code> templates, i.e. contain the string "XXXXXX".
937
+ <a class="link" href="glib-File-Utilities.html#g-mkdtemp" title="g_mkdtemp ()"><code class="function">g_mkdtemp()</code></a> is slightly more flexible than <code class="function">mkdtemp()</code> in that the
938
+ sequence does not have to occur at the very end of the template
939
+ and you can pass a <em class="parameter"><code>mode</code></em>
940
+ and additional <em class="parameter"><code>flags</code></em>
941
+ . The X string will
942
+ be modified to form the name of a directory that didn't exist.
943
+ The string should be in the GLib file name encoding. Most importantly,
944
+ on Windows it should be in UTF-8.</p>
945
+ <div class="refsect3">
946
+ <a name="id-1.5.18.7.11.6"></a><h4>Parameters</h4>
947
+ <div class="informaltable"><table width="100%" border="0">
948
+ <colgroup>
949
+ <col width="150px" class="parameters_name">
950
+ <col class="parameters_description">
951
+ <col width="200px" class="parameters_annotations">
952
+ </colgroup>
953
+ <tbody><tr>
954
+ <td class="parameter_name"><p>tmpl</p></td>
955
+ <td class="parameter_description"><p> template directory name. </p></td>
956
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> filename]</span></td>
957
+ </tr></tbody>
958
+ </table></div>
959
+ </div>
960
+ <div class="refsect3">
961
+ <a name="id-1.5.18.7.11.7"></a><h4>Returns</h4>
962
+ <p> A pointer to <em class="parameter"><code>tmpl</code></em>
963
+ , which has been modified
964
+ to hold the directory name. In case of errors, <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> is
965
+ returned and <code class="literal">errno</code> will be set.</p>
966
+ <p></p>
967
+ </div>
968
+ <p class="since">Since 2.30</p>
969
+ </div>
970
+ <hr>
971
+ <div class="refsect2">
972
+ <a name="g-mkdtemp-full"></a><h3>g_mkdtemp_full ()</h3>
973
+ <pre class="programlisting"><a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="returnvalue">gchar</span></a> *
974
+ g_mkdtemp_full (<em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *tmpl</code></em>,
975
+ <em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="type">gint</span></a> mode</code></em>);</pre>
976
+ <p>Creates a temporary directory. See the <code class="function">mkdtemp()</code> documentation
977
+ on most UNIX-like systems.</p>
978
+ <p>The parameter is a string that should follow the rules for
979
+ <code class="function">mkdtemp()</code> templates, i.e. contain the string "XXXXXX".
980
+ <a class="link" href="glib-File-Utilities.html#g-mkdtemp" title="g_mkdtemp ()"><code class="function">g_mkdtemp()</code></a> is slightly more flexible than <code class="function">mkdtemp()</code> in that the
981
+ sequence does not have to occur at the very end of the template
982
+ and you can pass a <em class="parameter"><code>mode</code></em>
983
+ . The X string will be modified to form
984
+ the name of a directory that didn't exist. The string should be
985
+ in the GLib file name encoding. Most importantly, on Windows it
986
+ should be in UTF-8.</p>
987
+ <div class="refsect3">
988
+ <a name="id-1.5.18.7.12.6"></a><h4>Parameters</h4>
989
+ <div class="informaltable"><table width="100%" border="0">
990
+ <colgroup>
991
+ <col width="150px" class="parameters_name">
992
+ <col class="parameters_description">
993
+ <col width="200px" class="parameters_annotations">
994
+ </colgroup>
995
+ <tbody>
996
+ <tr>
997
+ <td class="parameter_name"><p>tmpl</p></td>
998
+ <td class="parameter_description"><p> template directory name. </p></td>
999
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> filename]</span></td>
1000
+ </tr>
1001
+ <tr>
1002
+ <td class="parameter_name"><p>mode</p></td>
1003
+ <td class="parameter_description"><p>permissions to create the temporary directory with</p></td>
1004
+ <td class="parameter_annotations"> </td>
1005
+ </tr>
1006
+ </tbody>
1007
+ </table></div>
1008
+ </div>
1009
+ <div class="refsect3">
1010
+ <a name="id-1.5.18.7.12.7"></a><h4>Returns</h4>
1011
+ <p> A pointer to <em class="parameter"><code>tmpl</code></em>
1012
+ , which has been modified
1013
+ to hold the directory name. In case of errors, <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> is
1014
+ returned, and <code class="literal">errno</code> will be set.</p>
1015
+ <p></p>
1016
+ </div>
1017
+ <p class="since">Since 2.30</p>
1018
+ </div>
1019
+ <hr>
1020
+ <div class="refsect2">
1021
+ <a name="g-dir-make-tmp"></a><h3>g_dir_make_tmp ()</h3>
1022
+ <pre class="programlisting"><a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="returnvalue">gchar</span></a> *
1023
+ g_dir_make_tmp (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *tmpl</code></em>,
1024
+ <em class="parameter"><code><a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a> **error</code></em>);</pre>
1025
+ <p>Creates a subdirectory in the preferred directory for temporary
1026
+ files (as returned by <a class="link" href="glib-Miscellaneous-Utility-Functions.html#g-get-tmp-dir" title="g_get_tmp_dir ()"><code class="function">g_get_tmp_dir()</code></a>).</p>
1027
+ <p><em class="parameter"><code>tmpl</code></em>
1028
+ should be a string in the GLib file name encoding containing
1029
+ a sequence of six 'X' characters, as the parameter to <a class="link" href="glib-File-Utilities.html#g-mkstemp" title="g_mkstemp ()"><code class="function">g_mkstemp()</code></a>.
1030
+ However, unlike these functions, the template should only be a
1031
+ basename, no directory components are allowed. If template is
1032
+ <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a>, a default template is used.</p>
1033
+ <p>Note that in contrast to <a class="link" href="glib-File-Utilities.html#g-mkdtemp" title="g_mkdtemp ()"><code class="function">g_mkdtemp()</code></a> (and <code class="function">mkdtemp()</code>) <em class="parameter"><code>tmpl</code></em>
1034
+ is not
1035
+ modified, and might thus be a read-only literal string.</p>
1036
+ <div class="refsect3">
1037
+ <a name="id-1.5.18.7.13.7"></a><h4>Parameters</h4>
1038
+ <div class="informaltable"><table width="100%" border="0">
1039
+ <colgroup>
1040
+ <col width="150px" class="parameters_name">
1041
+ <col class="parameters_description">
1042
+ <col width="200px" class="parameters_annotations">
1043
+ </colgroup>
1044
+ <tbody>
1045
+ <tr>
1046
+ <td class="parameter_name"><p>tmpl</p></td>
1047
+ <td class="parameter_description"><p> Template for directory name,
1048
+ as in <a class="link" href="glib-File-Utilities.html#g-mkdtemp" title="g_mkdtemp ()"><code class="function">g_mkdtemp()</code></a>, basename only, or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> for a default template. </p></td>
1049
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> filename][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1050
+ </tr>
1051
+ <tr>
1052
+ <td class="parameter_name"><p>error</p></td>
1053
+ <td class="parameter_description"><p>return location for a <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a></p></td>
1054
+ <td class="parameter_annotations"> </td>
1055
+ </tr>
1056
+ </tbody>
1057
+ </table></div>
1058
+ </div>
1059
+ <div class="refsect3">
1060
+ <a name="id-1.5.18.7.13.8"></a><h4>Returns</h4>
1061
+ <p> The actual name used. This string
1062
+ should be freed with <a class="link" href="glib-Memory-Allocation.html#g-free" title="g_free ()"><code class="function">g_free()</code></a> when not needed any longer and is
1063
+ is in the GLib file name encoding. In case of errors, <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> is
1064
+ returned and <em class="parameter"><code>error</code></em>
1065
+ will be set. </p>
1066
+ <p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> filename]</span></p>
1067
+ </div>
1068
+ <p class="since">Since 2.30</p>
1069
+ </div>
1070
+ <hr>
1071
+ <div class="refsect2">
1072
+ <a name="g-dir-open"></a><h3>g_dir_open ()</h3>
1073
+ <pre class="programlisting"><a class="link" href="glib-File-Utilities.html#GDir" title="GDir"><span class="returnvalue">GDir</span></a> *
1074
+ g_dir_open (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *path</code></em>,
1075
+ <em class="parameter"><code><a class="link" href="glib-Basic-Types.html#guint" title="guint"><span class="type">guint</span></a> flags</code></em>,
1076
+ <em class="parameter"><code><a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a> **error</code></em>);</pre>
1077
+ <p>Opens a directory for reading. The names of the files in the
1078
+ directory can then be retrieved using <a class="link" href="glib-File-Utilities.html#g-dir-read-name" title="g_dir_read_name ()"><code class="function">g_dir_read_name()</code></a>. Note
1079
+ that the ordering is not defined.</p>
1080
+ <div class="refsect3">
1081
+ <a name="id-1.5.18.7.14.5"></a><h4>Parameters</h4>
1082
+ <div class="informaltable"><table width="100%" border="0">
1083
+ <colgroup>
1084
+ <col width="150px" class="parameters_name">
1085
+ <col class="parameters_description">
1086
+ <col width="200px" class="parameters_annotations">
1087
+ </colgroup>
1088
+ <tbody>
1089
+ <tr>
1090
+ <td class="parameter_name"><p>path</p></td>
1091
+ <td class="parameter_description"><p>the path to the directory you are interested in. On Unix
1092
+ in the on-disk encoding. On Windows in UTF-8</p></td>
1093
+ <td class="parameter_annotations"> </td>
1094
+ </tr>
1095
+ <tr>
1096
+ <td class="parameter_name"><p>flags</p></td>
1097
+ <td class="parameter_description"><p>Currently must be set to 0. Reserved for future use.</p></td>
1098
+ <td class="parameter_annotations"> </td>
1099
+ </tr>
1100
+ <tr>
1101
+ <td class="parameter_name"><p>error</p></td>
1102
+ <td class="parameter_description"><p>return location for a <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a>, or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a>.
1103
+ If non-<a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a>, an error will be set if and only if
1104
+ <a class="link" href="glib-File-Utilities.html#g-dir-open" title="g_dir_open ()"><code class="function">g_dir_open()</code></a> fails.</p></td>
1105
+ <td class="parameter_annotations"> </td>
1106
+ </tr>
1107
+ </tbody>
1108
+ </table></div>
1109
+ </div>
1110
+ <div class="refsect3">
1111
+ <a name="id-1.5.18.7.14.6"></a><h4>Returns</h4>
1112
+ <p> a newly allocated <a class="link" href="glib-File-Utilities.html#GDir" title="GDir"><span class="type">GDir</span></a> on success, <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> on failure.
1113
+ If non-<a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a>, you must free the result with <a class="link" href="glib-File-Utilities.html#g-dir-close" title="g_dir_close ()"><code class="function">g_dir_close()</code></a>
1114
+ when you are finished with it.</p>
1115
+ <p></p>
1116
+ </div>
1117
+ </div>
1118
+ <hr>
1119
+ <div class="refsect2">
1120
+ <a name="g-dir-read-name"></a><h3>g_dir_read_name ()</h3>
1121
+ <pre class="programlisting">const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="returnvalue">gchar</span></a> *
1122
+ g_dir_read_name (<em class="parameter"><code><a class="link" href="glib-File-Utilities.html#GDir" title="GDir"><span class="type">GDir</span></a> *dir</code></em>);</pre>
1123
+ <p>Retrieves the name of another entry in the directory, or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a>.
1124
+ The order of entries returned from this function is not defined,
1125
+ and may vary by file system or other operating-system dependent
1126
+ factors.</p>
1127
+ <p><a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> may also be returned in case of errors. On Unix, you can
1128
+ check <code class="literal">errno</code> to find out if <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> was returned because of an error.</p>
1129
+ <p>On Unix, the '.' and '..' entries are omitted, and the returned
1130
+ name is in the on-disk encoding.</p>
1131
+ <p>On Windows, as is true of all GLib functions which operate on
1132
+ filenames, the returned name is in UTF-8.</p>
1133
+ <div class="refsect3">
1134
+ <a name="id-1.5.18.7.15.8"></a><h4>Parameters</h4>
1135
+ <div class="informaltable"><table width="100%" border="0">
1136
+ <colgroup>
1137
+ <col width="150px" class="parameters_name">
1138
+ <col class="parameters_description">
1139
+ <col width="200px" class="parameters_annotations">
1140
+ </colgroup>
1141
+ <tbody><tr>
1142
+ <td class="parameter_name"><p>dir</p></td>
1143
+ <td class="parameter_description"><p>a <a class="link" href="glib-File-Utilities.html#GDir" title="GDir"><span class="type">GDir</span></a>* created by <a class="link" href="glib-File-Utilities.html#g-dir-open" title="g_dir_open ()"><code class="function">g_dir_open()</code></a></p></td>
1144
+ <td class="parameter_annotations"> </td>
1145
+ </tr></tbody>
1146
+ </table></div>
1147
+ </div>
1148
+ <div class="refsect3">
1149
+ <a name="id-1.5.18.7.15.9"></a><h4>Returns</h4>
1150
+ <p> The entry's name or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> if there are no
1151
+ more entries. The return value is owned by GLib and
1152
+ must not be modified or freed.</p>
1153
+ <p></p>
1154
+ </div>
1155
+ </div>
1156
+ <hr>
1157
+ <div class="refsect2">
1158
+ <a name="g-dir-rewind"></a><h3>g_dir_rewind ()</h3>
1159
+ <pre class="programlisting"><span class="returnvalue">void</span>
1160
+ g_dir_rewind (<em class="parameter"><code><a class="link" href="glib-File-Utilities.html#GDir" title="GDir"><span class="type">GDir</span></a> *dir</code></em>);</pre>
1161
+ <p>Resets the given directory. The next call to <a class="link" href="glib-File-Utilities.html#g-dir-read-name" title="g_dir_read_name ()"><code class="function">g_dir_read_name()</code></a>
1162
+ will return the first entry again.</p>
1163
+ <div class="refsect3">
1164
+ <a name="id-1.5.18.7.16.5"></a><h4>Parameters</h4>
1165
+ <div class="informaltable"><table width="100%" border="0">
1166
+ <colgroup>
1167
+ <col width="150px" class="parameters_name">
1168
+ <col class="parameters_description">
1169
+ <col width="200px" class="parameters_annotations">
1170
+ </colgroup>
1171
+ <tbody><tr>
1172
+ <td class="parameter_name"><p>dir</p></td>
1173
+ <td class="parameter_description"><p>a <a class="link" href="glib-File-Utilities.html#GDir" title="GDir"><span class="type">GDir</span></a>* created by <a class="link" href="glib-File-Utilities.html#g-dir-open" title="g_dir_open ()"><code class="function">g_dir_open()</code></a></p></td>
1174
+ <td class="parameter_annotations"> </td>
1175
+ </tr></tbody>
1176
+ </table></div>
1177
+ </div>
1178
+ </div>
1179
+ <hr>
1180
+ <div class="refsect2">
1181
+ <a name="g-dir-close"></a><h3>g_dir_close ()</h3>
1182
+ <pre class="programlisting"><span class="returnvalue">void</span>
1183
+ g_dir_close (<em class="parameter"><code><a class="link" href="glib-File-Utilities.html#GDir" title="GDir"><span class="type">GDir</span></a> *dir</code></em>);</pre>
1184
+ <p>Closes the directory and deallocates all related resources.</p>
1185
+ <div class="refsect3">
1186
+ <a name="id-1.5.18.7.17.5"></a><h4>Parameters</h4>
1187
+ <div class="informaltable"><table width="100%" border="0">
1188
+ <colgroup>
1189
+ <col width="150px" class="parameters_name">
1190
+ <col class="parameters_description">
1191
+ <col width="200px" class="parameters_annotations">
1192
+ </colgroup>
1193
+ <tbody><tr>
1194
+ <td class="parameter_name"><p>dir</p></td>
1195
+ <td class="parameter_description"><p>a <a class="link" href="glib-File-Utilities.html#GDir" title="GDir"><span class="type">GDir</span></a>* created by <a class="link" href="glib-File-Utilities.html#g-dir-open" title="g_dir_open ()"><code class="function">g_dir_open()</code></a></p></td>
1196
+ <td class="parameter_annotations"> </td>
1197
+ </tr></tbody>
1198
+ </table></div>
1199
+ </div>
1200
+ </div>
1201
+ <hr>
1202
+ <div class="refsect2">
1203
+ <a name="g-mapped-file-new"></a><h3>g_mapped_file_new ()</h3>
1204
+ <pre class="programlisting"><a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="returnvalue">GMappedFile</span></a> *
1205
+ g_mapped_file_new (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
1206
+ <em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gboolean" title="gboolean"><span class="type">gboolean</span></a> writable</code></em>,
1207
+ <em class="parameter"><code><a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a> **error</code></em>);</pre>
1208
+ <p>Maps a file into memory. On UNIX, this is using the <code class="function">mmap()</code> function.</p>
1209
+ <p>If <em class="parameter"><code>writable</code></em>
1210
+ is <a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a>, the mapped buffer may be modified, otherwise
1211
+ it is an error to modify the mapped buffer. Modifications to the buffer
1212
+ are not visible to other processes mapping the same file, and are not
1213
+ written back to the file.</p>
1214
+ <p>Note that modifications of the underlying file might affect the contents
1215
+ of the <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a>. Therefore, mapping should only be used if the file
1216
+ will not be modified, or if all modifications of the file are done
1217
+ atomically (e.g. using <a class="link" href="glib-File-Utilities.html#g-file-set-contents" title="g_file_set_contents ()"><code class="function">g_file_set_contents()</code></a>).</p>
1218
+ <p>If <em class="parameter"><code>filename</code></em>
1219
+ is the name of an empty, regular file, the function
1220
+ will successfully return an empty <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a>. In other cases of
1221
+ size 0 (e.g. device files such as /dev/null), <em class="parameter"><code>error</code></em>
1222
+ will be set
1223
+ to the <a class="link" href="glib-File-Utilities.html#GFileError" title="enum GFileError"><span class="type">GFileError</span></a> value <a class="link" href="glib-File-Utilities.html#G-FILE-ERROR-INVAL:CAPS"><span class="type">G_FILE_ERROR_INVAL</span></a>.</p>
1224
+ <div class="refsect3">
1225
+ <a name="id-1.5.18.7.18.8"></a><h4>Parameters</h4>
1226
+ <div class="informaltable"><table width="100%" border="0">
1227
+ <colgroup>
1228
+ <col width="150px" class="parameters_name">
1229
+ <col class="parameters_description">
1230
+ <col width="200px" class="parameters_annotations">
1231
+ </colgroup>
1232
+ <tbody>
1233
+ <tr>
1234
+ <td class="parameter_name"><p>filename</p></td>
1235
+ <td class="parameter_description"><p>The path of the file to load, in the GLib filename encoding</p></td>
1236
+ <td class="parameter_annotations"> </td>
1237
+ </tr>
1238
+ <tr>
1239
+ <td class="parameter_name"><p>writable</p></td>
1240
+ <td class="parameter_description"><p>whether the mapping should be writable</p></td>
1241
+ <td class="parameter_annotations"> </td>
1242
+ </tr>
1243
+ <tr>
1244
+ <td class="parameter_name"><p>error</p></td>
1245
+ <td class="parameter_description"><p>return location for a <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a>, or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a></p></td>
1246
+ <td class="parameter_annotations"> </td>
1247
+ </tr>
1248
+ </tbody>
1249
+ </table></div>
1250
+ </div>
1251
+ <div class="refsect3">
1252
+ <a name="id-1.5.18.7.18.9"></a><h4>Returns</h4>
1253
+ <p> a newly allocated <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a> which must be unref'd
1254
+ with <a class="link" href="glib-File-Utilities.html#g-mapped-file-unref" title="g_mapped_file_unref ()"><code class="function">g_mapped_file_unref()</code></a>, or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> if the mapping failed.</p>
1255
+ <p></p>
1256
+ </div>
1257
+ <p class="since">Since 2.8</p>
1258
+ </div>
1259
+ <hr>
1260
+ <div class="refsect2">
1261
+ <a name="g-mapped-file-new-from-fd"></a><h3>g_mapped_file_new_from_fd ()</h3>
1262
+ <pre class="programlisting"><a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="returnvalue">GMappedFile</span></a> *
1263
+ g_mapped_file_new_from_fd (<em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="type">gint</span></a> fd</code></em>,
1264
+ <em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gboolean" title="gboolean"><span class="type">gboolean</span></a> writable</code></em>,
1265
+ <em class="parameter"><code><a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a> **error</code></em>);</pre>
1266
+ <p>Maps a file into memory. On UNIX, this is using the <code class="function">mmap()</code> function.</p>
1267
+ <p>If <em class="parameter"><code>writable</code></em>
1268
+ is <a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a>, the mapped buffer may be modified, otherwise
1269
+ it is an error to modify the mapped buffer. Modifications to the buffer
1270
+ are not visible to other processes mapping the same file, and are not
1271
+ written back to the file.</p>
1272
+ <p>Note that modifications of the underlying file might affect the contents
1273
+ of the <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a>. Therefore, mapping should only be used if the file
1274
+ will not be modified, or if all modifications of the file are done
1275
+ atomically (e.g. using <a class="link" href="glib-File-Utilities.html#g-file-set-contents" title="g_file_set_contents ()"><code class="function">g_file_set_contents()</code></a>).</p>
1276
+ <div class="refsect3">
1277
+ <a name="id-1.5.18.7.19.7"></a><h4>Parameters</h4>
1278
+ <div class="informaltable"><table width="100%" border="0">
1279
+ <colgroup>
1280
+ <col width="150px" class="parameters_name">
1281
+ <col class="parameters_description">
1282
+ <col width="200px" class="parameters_annotations">
1283
+ </colgroup>
1284
+ <tbody>
1285
+ <tr>
1286
+ <td class="parameter_name"><p>fd</p></td>
1287
+ <td class="parameter_description"><p>The file descriptor of the file to load</p></td>
1288
+ <td class="parameter_annotations"> </td>
1289
+ </tr>
1290
+ <tr>
1291
+ <td class="parameter_name"><p>writable</p></td>
1292
+ <td class="parameter_description"><p>whether the mapping should be writable</p></td>
1293
+ <td class="parameter_annotations"> </td>
1294
+ </tr>
1295
+ <tr>
1296
+ <td class="parameter_name"><p>error</p></td>
1297
+ <td class="parameter_description"><p>return location for a <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a>, or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a></p></td>
1298
+ <td class="parameter_annotations"> </td>
1299
+ </tr>
1300
+ </tbody>
1301
+ </table></div>
1302
+ </div>
1303
+ <div class="refsect3">
1304
+ <a name="id-1.5.18.7.19.8"></a><h4>Returns</h4>
1305
+ <p> a newly allocated <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a> which must be unref'd
1306
+ with <a class="link" href="glib-File-Utilities.html#g-mapped-file-unref" title="g_mapped_file_unref ()"><code class="function">g_mapped_file_unref()</code></a>, or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> if the mapping failed.</p>
1307
+ <p></p>
1308
+ </div>
1309
+ <p class="since">Since 2.32</p>
1310
+ </div>
1311
+ <hr>
1312
+ <div class="refsect2">
1313
+ <a name="g-mapped-file-ref"></a><h3>g_mapped_file_ref ()</h3>
1314
+ <pre class="programlisting"><a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="returnvalue">GMappedFile</span></a> *
1315
+ g_mapped_file_ref (<em class="parameter"><code><a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a> *file</code></em>);</pre>
1316
+ <p>Increments the reference count of <em class="parameter"><code>file</code></em>
1317
+ by one. It is safe to call
1318
+ this function from any thread.</p>
1319
+ <div class="refsect3">
1320
+ <a name="id-1.5.18.7.20.5"></a><h4>Parameters</h4>
1321
+ <div class="informaltable"><table width="100%" border="0">
1322
+ <colgroup>
1323
+ <col width="150px" class="parameters_name">
1324
+ <col class="parameters_description">
1325
+ <col width="200px" class="parameters_annotations">
1326
+ </colgroup>
1327
+ <tbody><tr>
1328
+ <td class="parameter_name"><p>file</p></td>
1329
+ <td class="parameter_description"><p>a <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a></p></td>
1330
+ <td class="parameter_annotations"> </td>
1331
+ </tr></tbody>
1332
+ </table></div>
1333
+ </div>
1334
+ <div class="refsect3">
1335
+ <a name="id-1.5.18.7.20.6"></a><h4>Returns</h4>
1336
+ <p> the passed in <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a>.</p>
1337
+ <p></p>
1338
+ </div>
1339
+ <p class="since">Since 2.22</p>
1340
+ </div>
1341
+ <hr>
1342
+ <div class="refsect2">
1343
+ <a name="g-mapped-file-unref"></a><h3>g_mapped_file_unref ()</h3>
1344
+ <pre class="programlisting"><span class="returnvalue">void</span>
1345
+ g_mapped_file_unref (<em class="parameter"><code><a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a> *file</code></em>);</pre>
1346
+ <p>Decrements the reference count of <em class="parameter"><code>file</code></em>
1347
+ by one. If the reference count
1348
+ drops to 0, unmaps the buffer of <em class="parameter"><code>file</code></em>
1349
+ and frees it.</p>
1350
+ <p>It is safe to call this function from any thread.</p>
1351
+ <p>Since 2.22</p>
1352
+ <div class="refsect3">
1353
+ <a name="id-1.5.18.7.21.7"></a><h4>Parameters</h4>
1354
+ <div class="informaltable"><table width="100%" border="0">
1355
+ <colgroup>
1356
+ <col width="150px" class="parameters_name">
1357
+ <col class="parameters_description">
1358
+ <col width="200px" class="parameters_annotations">
1359
+ </colgroup>
1360
+ <tbody><tr>
1361
+ <td class="parameter_name"><p>file</p></td>
1362
+ <td class="parameter_description"><p>a <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a></p></td>
1363
+ <td class="parameter_annotations"> </td>
1364
+ </tr></tbody>
1365
+ </table></div>
1366
+ </div>
1367
+ </div>
1368
+ <hr>
1369
+ <div class="refsect2">
1370
+ <a name="g-mapped-file-free"></a><h3>g_mapped_file_free ()</h3>
1371
+ <pre class="programlisting"><span class="returnvalue">void</span>
1372
+ g_mapped_file_free (<em class="parameter"><code><a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a> *file</code></em>);</pre>
1373
+ <div class="warning">
1374
+ <p><code class="literal">g_mapped_file_free</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1375
+ <p>Use <a class="link" href="glib-File-Utilities.html#g-mapped-file-unref" title="g_mapped_file_unref ()"><code class="function">g_mapped_file_unref()</code></a> instead.</p>
1376
+ </div>
1377
+ <p>This call existed before <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a> had refcounting and is currently
1378
+ exactly the same as <a class="link" href="glib-File-Utilities.html#g-mapped-file-unref" title="g_mapped_file_unref ()"><code class="function">g_mapped_file_unref()</code></a>.</p>
1379
+ <div class="refsect3">
1380
+ <a name="id-1.5.18.7.22.7"></a><h4>Parameters</h4>
1381
+ <div class="informaltable"><table width="100%" border="0">
1382
+ <colgroup>
1383
+ <col width="150px" class="parameters_name">
1384
+ <col class="parameters_description">
1385
+ <col width="200px" class="parameters_annotations">
1386
+ </colgroup>
1387
+ <tbody><tr>
1388
+ <td class="parameter_name"><p>file</p></td>
1389
+ <td class="parameter_description"><p>a <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a></p></td>
1390
+ <td class="parameter_annotations"> </td>
1391
+ </tr></tbody>
1392
+ </table></div>
1393
+ </div>
1394
+ <p class="since">Since 2.8</p>
1395
+ </div>
1396
+ <hr>
1397
+ <div class="refsect2">
1398
+ <a name="g-mapped-file-get-length"></a><h3>g_mapped_file_get_length ()</h3>
1399
+ <pre class="programlisting"><a class="link" href="glib-Basic-Types.html#gsize" title="gsize"><span class="returnvalue">gsize</span></a>
1400
+ g_mapped_file_get_length (<em class="parameter"><code><a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a> *file</code></em>);</pre>
1401
+ <p>Returns the length of the contents of a <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a>.</p>
1402
+ <div class="refsect3">
1403
+ <a name="id-1.5.18.7.23.5"></a><h4>Parameters</h4>
1404
+ <div class="informaltable"><table width="100%" border="0">
1405
+ <colgroup>
1406
+ <col width="150px" class="parameters_name">
1407
+ <col class="parameters_description">
1408
+ <col width="200px" class="parameters_annotations">
1409
+ </colgroup>
1410
+ <tbody><tr>
1411
+ <td class="parameter_name"><p>file</p></td>
1412
+ <td class="parameter_description"><p>a <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a></p></td>
1413
+ <td class="parameter_annotations"> </td>
1414
+ </tr></tbody>
1415
+ </table></div>
1416
+ </div>
1417
+ <div class="refsect3">
1418
+ <a name="id-1.5.18.7.23.6"></a><h4>Returns</h4>
1419
+ <p> the length of the contents of <em class="parameter"><code>file</code></em>
1420
+ .</p>
1421
+ <p></p>
1422
+ </div>
1423
+ <p class="since">Since 2.8</p>
1424
+ </div>
1425
+ <hr>
1426
+ <div class="refsect2">
1427
+ <a name="g-mapped-file-get-contents"></a><h3>g_mapped_file_get_contents ()</h3>
1428
+ <pre class="programlisting"><a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="returnvalue">gchar</span></a> *
1429
+ g_mapped_file_get_contents (<em class="parameter"><code><a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a> *file</code></em>);</pre>
1430
+ <p>Returns the contents of a <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a>. </p>
1431
+ <p>Note that the contents may not be zero-terminated,
1432
+ even if the <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a> is backed by a text file.</p>
1433
+ <p>If the file is empty then <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> is returned.</p>
1434
+ <div class="refsect3">
1435
+ <a name="id-1.5.18.7.24.7"></a><h4>Parameters</h4>
1436
+ <div class="informaltable"><table width="100%" border="0">
1437
+ <colgroup>
1438
+ <col width="150px" class="parameters_name">
1439
+ <col class="parameters_description">
1440
+ <col width="200px" class="parameters_annotations">
1441
+ </colgroup>
1442
+ <tbody><tr>
1443
+ <td class="parameter_name"><p>file</p></td>
1444
+ <td class="parameter_description"><p>a <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a></p></td>
1445
+ <td class="parameter_annotations"> </td>
1446
+ </tr></tbody>
1447
+ </table></div>
1448
+ </div>
1449
+ <div class="refsect3">
1450
+ <a name="id-1.5.18.7.24.8"></a><h4>Returns</h4>
1451
+ <p> the contents of <em class="parameter"><code>file</code></em>
1452
+ , or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a>.</p>
1453
+ <p></p>
1454
+ </div>
1455
+ <p class="since">Since 2.8</p>
1456
+ </div>
1457
+ <hr>
1458
+ <div class="refsect2">
1459
+ <a name="g-mapped-file-get-bytes"></a><h3>g_mapped_file_get_bytes ()</h3>
1460
+ <pre class="programlisting"><a class="link" href="glib-Byte-Arrays.html#GBytes" title="GBytes"><span class="returnvalue">GBytes</span></a> *
1461
+ g_mapped_file_get_bytes (<em class="parameter"><code><a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a> *file</code></em>);</pre>
1462
+ <p>Creates a new <a class="link" href="glib-Byte-Arrays.html#GBytes" title="GBytes"><span class="type">GBytes</span></a> which references the data mapped from <em class="parameter"><code>file</code></em>
1463
+ .
1464
+ The mapped contents of the file must not be modified after creating this
1465
+ bytes object, because a <a class="link" href="glib-Byte-Arrays.html#GBytes" title="GBytes"><span class="type">GBytes</span></a> should be immutable.</p>
1466
+ <div class="refsect3">
1467
+ <a name="id-1.5.18.7.25.5"></a><h4>Parameters</h4>
1468
+ <div class="informaltable"><table width="100%" border="0">
1469
+ <colgroup>
1470
+ <col width="150px" class="parameters_name">
1471
+ <col class="parameters_description">
1472
+ <col width="200px" class="parameters_annotations">
1473
+ </colgroup>
1474
+ <tbody><tr>
1475
+ <td class="parameter_name"><p>file</p></td>
1476
+ <td class="parameter_description"><p>a <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a></p></td>
1477
+ <td class="parameter_annotations"> </td>
1478
+ </tr></tbody>
1479
+ </table></div>
1480
+ </div>
1481
+ <div class="refsect3">
1482
+ <a name="id-1.5.18.7.25.6"></a><h4>Returns</h4>
1483
+ <p> A newly allocated <a class="link" href="glib-Byte-Arrays.html#GBytes" title="GBytes"><span class="type">GBytes</span></a> referencing data
1484
+ from <em class="parameter"><code>file</code></em>
1485
+ . </p>
1486
+ <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1487
+ </div>
1488
+ <p class="since">Since 2.34</p>
1489
+ </div>
1490
+ <hr>
1491
+ <div class="refsect2">
1492
+ <a name="g-open"></a><h3>g_open ()</h3>
1493
+ <pre class="programlisting"><span class="returnvalue">int</span>
1494
+ g_open (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
1495
+ <em class="parameter"><code><span class="type">int</span> flags</code></em>,
1496
+ <em class="parameter"><code><span class="type">int</span> mode</code></em>);</pre>
1497
+ <p>A wrapper for the POSIX <code class="function">open()</code> function. The <code class="function">open()</code> function is
1498
+ used to convert a pathname into a file descriptor.</p>
1499
+ <p>On POSIX systems file descriptors are implemented by the operating
1500
+ system. On Windows, it's the C library that implements <code class="function">open()</code> and
1501
+ file descriptors. The actual Win32 API for opening files is quite
1502
+ different, see MSDN documentation for <code class="function">CreateFile()</code>. The Win32 API
1503
+ uses file handles, which are more randomish integers, not small
1504
+ integers like file descriptors.</p>
1505
+ <p>Because file descriptors are specific to the C library on Windows,
1506
+ the file descriptor returned by this function makes sense only to
1507
+ functions in the same C library. Thus if the GLib-using code uses a
1508
+ different C library than GLib does, the file descriptor returned by
1509
+ this function cannot be passed to C library functions like <code class="function">write()</code>
1510
+ or <code class="function">read()</code>.</p>
1511
+ <p>See your C library manual for more details about <code class="function">open()</code>.</p>
1512
+ <div class="refsect3">
1513
+ <a name="id-1.5.18.7.26.8"></a><h4>Parameters</h4>
1514
+ <div class="informaltable"><table width="100%" border="0">
1515
+ <colgroup>
1516
+ <col width="150px" class="parameters_name">
1517
+ <col class="parameters_description">
1518
+ <col width="200px" class="parameters_annotations">
1519
+ </colgroup>
1520
+ <tbody>
1521
+ <tr>
1522
+ <td class="parameter_name"><p>filename</p></td>
1523
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
1524
+ <td class="parameter_annotations"> </td>
1525
+ </tr>
1526
+ <tr>
1527
+ <td class="parameter_name"><p>flags</p></td>
1528
+ <td class="parameter_description"><p>as in <code class="function">open()</code></p></td>
1529
+ <td class="parameter_annotations"> </td>
1530
+ </tr>
1531
+ <tr>
1532
+ <td class="parameter_name"><p>mode</p></td>
1533
+ <td class="parameter_description"><p>as in <code class="function">open()</code></p></td>
1534
+ <td class="parameter_annotations"> </td>
1535
+ </tr>
1536
+ </tbody>
1537
+ </table></div>
1538
+ </div>
1539
+ <div class="refsect3">
1540
+ <a name="id-1.5.18.7.26.9"></a><h4>Returns</h4>
1541
+ <p> a new file descriptor, or -1 if an error occurred.
1542
+ The return value can be used exactly like the return value
1543
+ from <code class="function">open()</code>.</p>
1544
+ <p></p>
1545
+ </div>
1546
+ <p class="since">Since 2.6</p>
1547
+ </div>
1548
+ <hr>
1549
+ <div class="refsect2">
1550
+ <a name="g-rename"></a><h3>g_rename ()</h3>
1551
+ <pre class="programlisting"><span class="returnvalue">int</span>
1552
+ g_rename (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *oldfilename</code></em>,
1553
+ <em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *newfilename</code></em>);</pre>
1554
+ <p>A wrapper for the POSIX <code class="function">rename()</code> function. The <code class="function">rename()</code> function
1555
+ renames a file, moving it between directories if required.</p>
1556
+ <p>See your C library manual for more details about how <code class="function">rename()</code> works
1557
+ on your system. It is not possible in general on Windows to rename
1558
+ a file that is open to some process.</p>
1559
+ <div class="refsect3">
1560
+ <a name="id-1.5.18.7.27.6"></a><h4>Parameters</h4>
1561
+ <div class="informaltable"><table width="100%" border="0">
1562
+ <colgroup>
1563
+ <col width="150px" class="parameters_name">
1564
+ <col class="parameters_description">
1565
+ <col width="200px" class="parameters_annotations">
1566
+ </colgroup>
1567
+ <tbody>
1568
+ <tr>
1569
+ <td class="parameter_name"><p>oldfilename</p></td>
1570
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
1571
+ <td class="parameter_annotations"> </td>
1572
+ </tr>
1573
+ <tr>
1574
+ <td class="parameter_name"><p>newfilename</p></td>
1575
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding</p></td>
1576
+ <td class="parameter_annotations"> </td>
1577
+ </tr>
1578
+ </tbody>
1579
+ </table></div>
1580
+ </div>
1581
+ <div class="refsect3">
1582
+ <a name="id-1.5.18.7.27.7"></a><h4>Returns</h4>
1583
+ <p> 0 if the renaming succeeded, -1 if an error occurred</p>
1584
+ <p></p>
1585
+ </div>
1586
+ <p class="since">Since 2.6</p>
1587
+ </div>
1588
+ <hr>
1589
+ <div class="refsect2">
1590
+ <a name="g-mkdir"></a><h3>g_mkdir ()</h3>
1591
+ <pre class="programlisting"><span class="returnvalue">int</span>
1592
+ g_mkdir (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
1593
+ <em class="parameter"><code><span class="type">int</span> mode</code></em>);</pre>
1594
+ <p>A wrapper for the POSIX <code class="function">mkdir()</code> function. The <code class="function">mkdir()</code> function
1595
+ attempts to create a directory with the given name and permissions.
1596
+ The mode argument is ignored on Windows.</p>
1597
+ <p>See your C library manual for more details about <code class="function">mkdir()</code>.</p>
1598
+ <div class="refsect3">
1599
+ <a name="id-1.5.18.7.28.6"></a><h4>Parameters</h4>
1600
+ <div class="informaltable"><table width="100%" border="0">
1601
+ <colgroup>
1602
+ <col width="150px" class="parameters_name">
1603
+ <col class="parameters_description">
1604
+ <col width="200px" class="parameters_annotations">
1605
+ </colgroup>
1606
+ <tbody>
1607
+ <tr>
1608
+ <td class="parameter_name"><p>filename</p></td>
1609
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
1610
+ <td class="parameter_annotations"> </td>
1611
+ </tr>
1612
+ <tr>
1613
+ <td class="parameter_name"><p>mode</p></td>
1614
+ <td class="parameter_description"><p>permissions to use for the newly created directory</p></td>
1615
+ <td class="parameter_annotations"> </td>
1616
+ </tr>
1617
+ </tbody>
1618
+ </table></div>
1619
+ </div>
1620
+ <div class="refsect3">
1621
+ <a name="id-1.5.18.7.28.7"></a><h4>Returns</h4>
1622
+ <p> 0 if the directory was successfully created, -1 if an error
1623
+ occurred</p>
1624
+ <p></p>
1625
+ </div>
1626
+ <p class="since">Since 2.6</p>
1627
+ </div>
1628
+ <hr>
1629
+ <div class="refsect2">
1630
+ <a name="g-stat"></a><h3>g_stat ()</h3>
1631
+ <pre class="programlisting"><span class="returnvalue">int</span>
1632
+ g_stat (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
1633
+ <em class="parameter"><code><a class="link" href="glib-File-Utilities.html#GStatBuf" title="GStatBuf"><span class="type">GStatBuf</span></a> *buf</code></em>);</pre>
1634
+ <p>A wrapper for the POSIX <code class="function">stat()</code> function. The <code class="function">stat()</code> function
1635
+ returns information about a file. On Windows the <code class="function">stat()</code> function in
1636
+ the C library checks only the FAT-style READONLY attribute and does
1637
+ not look at the ACL at all. Thus on Windows the protection bits in
1638
+ the <em class="parameter"><code>st_mode</code></em>
1639
+ field are a fabrication of little use.</p>
1640
+ <p>On Windows the Microsoft C libraries have several variants of the
1641
+ stat struct and <code class="function">stat()</code> function with names like <code class="function">_stat()</code>, <code class="function">_stat32()</code>,
1642
+ <code class="function">_stat32i64()</code> and <code class="function">_stat64i32()</code>. The one used here is for 32-bit code
1643
+ the one with 32-bit size and time fields, specifically called <code class="function">_stat32()</code>.</p>
1644
+ <p>In Microsoft's compiler, by default struct stat means one with
1645
+ 64-bit time fields while in MinGW struct stat is the legacy one
1646
+ with 32-bit fields. To hopefully clear up this messs, the gstdio.h
1647
+ header defines a type <a class="link" href="glib-File-Utilities.html#GStatBuf" title="GStatBuf"><span class="type">GStatBuf</span></a> which is the appropriate struct type
1648
+ depending on the platform and/or compiler being used. On POSIX it
1649
+ is just struct stat, but note that even on POSIX platforms, <code class="function">stat()</code>
1650
+ might be a macro.</p>
1651
+ <p>See your C library manual for more details about <code class="function">stat()</code>.</p>
1652
+ <div class="refsect3">
1653
+ <a name="id-1.5.18.7.29.8"></a><h4>Parameters</h4>
1654
+ <div class="informaltable"><table width="100%" border="0">
1655
+ <colgroup>
1656
+ <col width="150px" class="parameters_name">
1657
+ <col class="parameters_description">
1658
+ <col width="200px" class="parameters_annotations">
1659
+ </colgroup>
1660
+ <tbody>
1661
+ <tr>
1662
+ <td class="parameter_name"><p>filename</p></td>
1663
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
1664
+ <td class="parameter_annotations"> </td>
1665
+ </tr>
1666
+ <tr>
1667
+ <td class="parameter_name"><p>buf</p></td>
1668
+ <td class="parameter_description"><p>a pointer to a stat struct, which will be filled with the file
1669
+ information</p></td>
1670
+ <td class="parameter_annotations"> </td>
1671
+ </tr>
1672
+ </tbody>
1673
+ </table></div>
1674
+ </div>
1675
+ <div class="refsect3">
1676
+ <a name="id-1.5.18.7.29.9"></a><h4>Returns</h4>
1677
+ <p> 0 if the information was successfully retrieved,
1678
+ -1 if an error occurred</p>
1679
+ <p></p>
1680
+ </div>
1681
+ <p class="since">Since 2.6</p>
1682
+ </div>
1683
+ <hr>
1684
+ <div class="refsect2">
1685
+ <a name="g-lstat"></a><h3>g_lstat ()</h3>
1686
+ <pre class="programlisting"><span class="returnvalue">int</span>
1687
+ g_lstat (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
1688
+ <em class="parameter"><code><a class="link" href="glib-File-Utilities.html#GStatBuf" title="GStatBuf"><span class="type">GStatBuf</span></a> *buf</code></em>);</pre>
1689
+ <p>A wrapper for the POSIX <code class="function">lstat()</code> function. The <code class="function">lstat()</code> function is
1690
+ like <code class="function">stat()</code> except that in the case of symbolic links, it returns
1691
+ information about the symbolic link itself and not the file that it
1692
+ refers to. If the system does not support symbolic links <a class="link" href="glib-File-Utilities.html#g-lstat" title="g_lstat ()"><code class="function">g_lstat()</code></a>
1693
+ is identical to <a class="link" href="glib-File-Utilities.html#g-stat" title="g_stat ()"><code class="function">g_stat()</code></a>.</p>
1694
+ <p>See your C library manual for more details about <code class="function">lstat()</code>.</p>
1695
+ <div class="refsect3">
1696
+ <a name="id-1.5.18.7.30.6"></a><h4>Parameters</h4>
1697
+ <div class="informaltable"><table width="100%" border="0">
1698
+ <colgroup>
1699
+ <col width="150px" class="parameters_name">
1700
+ <col class="parameters_description">
1701
+ <col width="200px" class="parameters_annotations">
1702
+ </colgroup>
1703
+ <tbody>
1704
+ <tr>
1705
+ <td class="parameter_name"><p>filename</p></td>
1706
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
1707
+ <td class="parameter_annotations"> </td>
1708
+ </tr>
1709
+ <tr>
1710
+ <td class="parameter_name"><p>buf</p></td>
1711
+ <td class="parameter_description"><p>a pointer to a stat struct, which will be filled with the file
1712
+ information</p></td>
1713
+ <td class="parameter_annotations"> </td>
1714
+ </tr>
1715
+ </tbody>
1716
+ </table></div>
1717
+ </div>
1718
+ <div class="refsect3">
1719
+ <a name="id-1.5.18.7.30.7"></a><h4>Returns</h4>
1720
+ <p> 0 if the information was successfully retrieved,
1721
+ -1 if an error occurred</p>
1722
+ <p></p>
1723
+ </div>
1724
+ <p class="since">Since 2.6</p>
1725
+ </div>
1726
+ <hr>
1727
+ <div class="refsect2">
1728
+ <a name="g-unlink"></a><h3>g_unlink ()</h3>
1729
+ <pre class="programlisting"><span class="returnvalue">int</span>
1730
+ g_unlink (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>);</pre>
1731
+ <p>A wrapper for the POSIX <code class="function">unlink()</code> function. The <code class="function">unlink()</code> function
1732
+ deletes a name from the filesystem. If this was the last link to the
1733
+ file and no processes have it opened, the diskspace occupied by the
1734
+ file is freed.</p>
1735
+ <p>See your C library manual for more details about <code class="function">unlink()</code>. Note
1736
+ that on Windows, it is in general not possible to delete files that
1737
+ are open to some process, or mapped into memory.</p>
1738
+ <div class="refsect3">
1739
+ <a name="id-1.5.18.7.31.6"></a><h4>Parameters</h4>
1740
+ <div class="informaltable"><table width="100%" border="0">
1741
+ <colgroup>
1742
+ <col width="150px" class="parameters_name">
1743
+ <col class="parameters_description">
1744
+ <col width="200px" class="parameters_annotations">
1745
+ </colgroup>
1746
+ <tbody><tr>
1747
+ <td class="parameter_name"><p>filename</p></td>
1748
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
1749
+ <td class="parameter_annotations"> </td>
1750
+ </tr></tbody>
1751
+ </table></div>
1752
+ </div>
1753
+ <div class="refsect3">
1754
+ <a name="id-1.5.18.7.31.7"></a><h4>Returns</h4>
1755
+ <p> 0 if the name was successfully deleted, -1 if an error
1756
+ occurred</p>
1757
+ <p></p>
1758
+ </div>
1759
+ <p class="since">Since 2.6</p>
1760
+ </div>
1761
+ <hr>
1762
+ <div class="refsect2">
1763
+ <a name="g-remove"></a><h3>g_remove ()</h3>
1764
+ <pre class="programlisting"><span class="returnvalue">int</span>
1765
+ g_remove (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>);</pre>
1766
+ <p>A wrapper for the POSIX <code class="function">remove()</code> function. The <code class="function">remove()</code> function
1767
+ deletes a name from the filesystem.</p>
1768
+ <p>See your C library manual for more details about how <code class="function">remove()</code> works
1769
+ on your system. On Unix, <code class="function">remove()</code> removes also directories, as it
1770
+ calls <code class="function">unlink()</code> for files and <code class="function">rmdir()</code> for directories. On Windows,
1771
+ although <code class="function">remove()</code> in the C library only works for files, this
1772
+ function tries first <code class="function">remove()</code> and then if that fails <code class="function">rmdir()</code>, and
1773
+ thus works for both files and directories. Note however, that on
1774
+ Windows, it is in general not possible to remove a file that is
1775
+ open to some process, or mapped into memory.</p>
1776
+ <p>If this function fails on Windows you can't infer too much from the
1777
+ errno value. <code class="function">rmdir()</code> is tried regardless of what caused <code class="function">remove()</code> to
1778
+ fail. Any errno value set by <code class="function">remove()</code> will be overwritten by that
1779
+ set by <code class="function">rmdir()</code>.</p>
1780
+ <div class="refsect3">
1781
+ <a name="id-1.5.18.7.32.7"></a><h4>Parameters</h4>
1782
+ <div class="informaltable"><table width="100%" border="0">
1783
+ <colgroup>
1784
+ <col width="150px" class="parameters_name">
1785
+ <col class="parameters_description">
1786
+ <col width="200px" class="parameters_annotations">
1787
+ </colgroup>
1788
+ <tbody><tr>
1789
+ <td class="parameter_name"><p>filename</p></td>
1790
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
1791
+ <td class="parameter_annotations"> </td>
1792
+ </tr></tbody>
1793
+ </table></div>
1794
+ </div>
1795
+ <div class="refsect3">
1796
+ <a name="id-1.5.18.7.32.8"></a><h4>Returns</h4>
1797
+ <p> 0 if the file was successfully removed, -1 if an error
1798
+ occurred</p>
1799
+ <p></p>
1800
+ </div>
1801
+ <p class="since">Since 2.6</p>
1802
+ </div>
1803
+ <hr>
1804
+ <div class="refsect2">
1805
+ <a name="g-rmdir"></a><h3>g_rmdir ()</h3>
1806
+ <pre class="programlisting"><span class="returnvalue">int</span>
1807
+ g_rmdir (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>);</pre>
1808
+ <p>A wrapper for the POSIX <code class="function">rmdir()</code> function. The <code class="function">rmdir()</code> function
1809
+ deletes a directory from the filesystem.</p>
1810
+ <p>See your C library manual for more details about how <code class="function">rmdir()</code> works
1811
+ on your system.</p>
1812
+ <div class="refsect3">
1813
+ <a name="id-1.5.18.7.33.6"></a><h4>Parameters</h4>
1814
+ <div class="informaltable"><table width="100%" border="0">
1815
+ <colgroup>
1816
+ <col width="150px" class="parameters_name">
1817
+ <col class="parameters_description">
1818
+ <col width="200px" class="parameters_annotations">
1819
+ </colgroup>
1820
+ <tbody><tr>
1821
+ <td class="parameter_name"><p>filename</p></td>
1822
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
1823
+ <td class="parameter_annotations"> </td>
1824
+ </tr></tbody>
1825
+ </table></div>
1826
+ </div>
1827
+ <div class="refsect3">
1828
+ <a name="id-1.5.18.7.33.7"></a><h4>Returns</h4>
1829
+ <p> 0 if the directory was successfully removed, -1 if an error
1830
+ occurred</p>
1831
+ <p></p>
1832
+ </div>
1833
+ <p class="since">Since 2.6</p>
1834
+ </div>
1835
+ <hr>
1836
+ <div class="refsect2">
1837
+ <a name="g-fopen"></a><h3>g_fopen ()</h3>
1838
+ <pre class="programlisting"><span class="returnvalue">FILE</span> *
1839
+ g_fopen (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
1840
+ <em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *mode</code></em>);</pre>
1841
+ <p>A wrapper for the stdio <code class="function">fopen()</code> function. The <code class="function">fopen()</code> function
1842
+ opens a file and associates a new stream with it.</p>
1843
+ <p>Because file descriptors are specific to the C library on Windows,
1844
+ and a file descriptor is part of the FILE struct, the FILE* returned
1845
+ by this function makes sense only to functions in the same C library.
1846
+ Thus if the GLib-using code uses a different C library than GLib does,
1847
+ the FILE* returned by this function cannot be passed to C library
1848
+ functions like <code class="function">fprintf()</code> or <code class="function">fread()</code>.</p>
1849
+ <p>See your C library manual for more details about <code class="function">fopen()</code>.</p>
1850
+ <div class="refsect3">
1851
+ <a name="id-1.5.18.7.34.7"></a><h4>Parameters</h4>
1852
+ <div class="informaltable"><table width="100%" border="0">
1853
+ <colgroup>
1854
+ <col width="150px" class="parameters_name">
1855
+ <col class="parameters_description">
1856
+ <col width="200px" class="parameters_annotations">
1857
+ </colgroup>
1858
+ <tbody>
1859
+ <tr>
1860
+ <td class="parameter_name"><p>filename</p></td>
1861
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
1862
+ <td class="parameter_annotations"> </td>
1863
+ </tr>
1864
+ <tr>
1865
+ <td class="parameter_name"><p>mode</p></td>
1866
+ <td class="parameter_description"><p>a string describing the mode in which the file should be opened</p></td>
1867
+ <td class="parameter_annotations"> </td>
1868
+ </tr>
1869
+ </tbody>
1870
+ </table></div>
1871
+ </div>
1872
+ <div class="refsect3">
1873
+ <a name="id-1.5.18.7.34.8"></a><h4>Returns</h4>
1874
+ <p> A FILE* if the file was successfully opened, or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> if
1875
+ an error occurred</p>
1876
+ <p></p>
1877
+ </div>
1878
+ <p class="since">Since 2.6</p>
1879
+ </div>
1880
+ <hr>
1881
+ <div class="refsect2">
1882
+ <a name="g-freopen"></a><h3>g_freopen ()</h3>
1883
+ <pre class="programlisting"><span class="returnvalue">FILE</span> *
1884
+ g_freopen (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
1885
+ <em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *mode</code></em>,
1886
+ <em class="parameter"><code><span class="type">FILE</span> *stream</code></em>);</pre>
1887
+ <p>A wrapper for the POSIX <code class="function">freopen()</code> function. The <code class="function">freopen()</code> function
1888
+ opens a file and associates it with an existing stream.</p>
1889
+ <p>See your C library manual for more details about <code class="function">freopen()</code>.</p>
1890
+ <div class="refsect3">
1891
+ <a name="id-1.5.18.7.35.6"></a><h4>Parameters</h4>
1892
+ <div class="informaltable"><table width="100%" border="0">
1893
+ <colgroup>
1894
+ <col width="150px" class="parameters_name">
1895
+ <col class="parameters_description">
1896
+ <col width="200px" class="parameters_annotations">
1897
+ </colgroup>
1898
+ <tbody>
1899
+ <tr>
1900
+ <td class="parameter_name"><p>filename</p></td>
1901
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
1902
+ <td class="parameter_annotations"> </td>
1903
+ </tr>
1904
+ <tr>
1905
+ <td class="parameter_name"><p>mode</p></td>
1906
+ <td class="parameter_description"><p>a string describing the mode in which the file should be opened</p></td>
1907
+ <td class="parameter_annotations"> </td>
1908
+ </tr>
1909
+ <tr>
1910
+ <td class="parameter_name"><p>stream</p></td>
1911
+ <td class="parameter_description"><p> an existing stream which will be reused, or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a>. </p></td>
1912
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1913
+ </tr>
1914
+ </tbody>
1915
+ </table></div>
1916
+ </div>
1917
+ <div class="refsect3">
1918
+ <a name="id-1.5.18.7.35.7"></a><h4>Returns</h4>
1919
+ <p> A FILE* if the file was successfully opened, or <a class="link" href="glib-Standard-Macros.html#NULL:CAPS" title="NULL"><code class="literal">NULL</code></a> if
1920
+ an error occurred.</p>
1921
+ <p></p>
1922
+ </div>
1923
+ <p class="since">Since 2.6</p>
1924
+ </div>
1925
+ <hr>
1926
+ <div class="refsect2">
1927
+ <a name="g-chmod"></a><h3>g_chmod ()</h3>
1928
+ <pre class="programlisting"><span class="returnvalue">int</span>
1929
+ g_chmod (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
1930
+ <em class="parameter"><code><span class="type">int</span> mode</code></em>);</pre>
1931
+ <p>A wrapper for the POSIX <code class="function">chmod()</code> function. The <code class="function">chmod()</code> function is
1932
+ used to set the permissions of a file system object.</p>
1933
+ <p>On Windows the file protection mechanism is not at all POSIX-like,
1934
+ and the underlying <code class="function">chmod()</code> function in the C library just sets or
1935
+ clears the FAT-style READONLY attribute. It does not touch any
1936
+ ACL. Software that needs to manage file permissions on Windows
1937
+ exactly should use the Win32 API.</p>
1938
+ <p>See your C library manual for more details about <code class="function">chmod()</code>.</p>
1939
+ <div class="refsect3">
1940
+ <a name="id-1.5.18.7.36.7"></a><h4>Parameters</h4>
1941
+ <div class="informaltable"><table width="100%" border="0">
1942
+ <colgroup>
1943
+ <col width="150px" class="parameters_name">
1944
+ <col class="parameters_description">
1945
+ <col width="200px" class="parameters_annotations">
1946
+ </colgroup>
1947
+ <tbody>
1948
+ <tr>
1949
+ <td class="parameter_name"><p>filename</p></td>
1950
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
1951
+ <td class="parameter_annotations"> </td>
1952
+ </tr>
1953
+ <tr>
1954
+ <td class="parameter_name"><p>mode</p></td>
1955
+ <td class="parameter_description"><p>as in <code class="function">chmod()</code></p></td>
1956
+ <td class="parameter_annotations"> </td>
1957
+ </tr>
1958
+ </tbody>
1959
+ </table></div>
1960
+ </div>
1961
+ <div class="refsect3">
1962
+ <a name="id-1.5.18.7.36.8"></a><h4>Returns</h4>
1963
+ <p> 0 if the operation succeeded, -1 on error</p>
1964
+ <p></p>
1965
+ </div>
1966
+ <p class="since">Since 2.8</p>
1967
+ </div>
1968
+ <hr>
1969
+ <div class="refsect2">
1970
+ <a name="g-access"></a><h3>g_access ()</h3>
1971
+ <pre class="programlisting"><span class="returnvalue">int</span>
1972
+ g_access (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
1973
+ <em class="parameter"><code><span class="type">int</span> mode</code></em>);</pre>
1974
+ <p>A wrapper for the POSIX <code class="function">access()</code> function. This function is used to
1975
+ test a pathname for one or several of read, write or execute
1976
+ permissions, or just existence.</p>
1977
+ <p>On Windows, the file protection mechanism is not at all POSIX-like,
1978
+ and the underlying function in the C library only checks the
1979
+ FAT-style READONLY attribute, and does not look at the ACL of a
1980
+ file at all. This function is this in practise almost useless on
1981
+ Windows. Software that needs to handle file permissions on Windows
1982
+ more exactly should use the Win32 API.</p>
1983
+ <p>See your C library manual for more details about <code class="function">access()</code>.</p>
1984
+ <div class="refsect3">
1985
+ <a name="id-1.5.18.7.37.7"></a><h4>Parameters</h4>
1986
+ <div class="informaltable"><table width="100%" border="0">
1987
+ <colgroup>
1988
+ <col width="150px" class="parameters_name">
1989
+ <col class="parameters_description">
1990
+ <col width="200px" class="parameters_annotations">
1991
+ </colgroup>
1992
+ <tbody>
1993
+ <tr>
1994
+ <td class="parameter_name"><p>filename</p></td>
1995
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
1996
+ <td class="parameter_annotations"> </td>
1997
+ </tr>
1998
+ <tr>
1999
+ <td class="parameter_name"><p>mode</p></td>
2000
+ <td class="parameter_description"><p>as in <code class="function">access()</code></p></td>
2001
+ <td class="parameter_annotations"> </td>
2002
+ </tr>
2003
+ </tbody>
2004
+ </table></div>
2005
+ </div>
2006
+ <div class="refsect3">
2007
+ <a name="id-1.5.18.7.37.8"></a><h4>Returns</h4>
2008
+ <p> zero if the pathname refers to an existing file system
2009
+ object that has all the tested permissions, or -1 otherwise
2010
+ or on error.</p>
2011
+ <p></p>
2012
+ </div>
2013
+ <p class="since">Since 2.8</p>
2014
+ </div>
2015
+ <hr>
2016
+ <div class="refsect2">
2017
+ <a name="g-creat"></a><h3>g_creat ()</h3>
2018
+ <pre class="programlisting"><span class="returnvalue">int</span>
2019
+ g_creat (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
2020
+ <em class="parameter"><code><span class="type">int</span> mode</code></em>);</pre>
2021
+ <p>A wrapper for the POSIX <code class="function">creat()</code> function. The <code class="function">creat()</code> function is
2022
+ used to convert a pathname into a file descriptor, creating a file
2023
+ if necessary.</p>
2024
+ <p>On POSIX systems file descriptors are implemented by the operating
2025
+ system. On Windows, it's the C library that implements <code class="function">creat()</code> and
2026
+ file descriptors. The actual Windows API for opening files is
2027
+ different, see MSDN documentation for <code class="function">CreateFile()</code>. The Win32 API
2028
+ uses file handles, which are more randomish integers, not small
2029
+ integers like file descriptors.</p>
2030
+ <p>Because file descriptors are specific to the C library on Windows,
2031
+ the file descriptor returned by this function makes sense only to
2032
+ functions in the same C library. Thus if the GLib-using code uses a
2033
+ different C library than GLib does, the file descriptor returned by
2034
+ this function cannot be passed to C library functions like <code class="function">write()</code>
2035
+ or <code class="function">read()</code>.</p>
2036
+ <p>See your C library manual for more details about <code class="function">creat()</code>.</p>
2037
+ <div class="refsect3">
2038
+ <a name="id-1.5.18.7.38.8"></a><h4>Parameters</h4>
2039
+ <div class="informaltable"><table width="100%" border="0">
2040
+ <colgroup>
2041
+ <col width="150px" class="parameters_name">
2042
+ <col class="parameters_description">
2043
+ <col width="200px" class="parameters_annotations">
2044
+ </colgroup>
2045
+ <tbody>
2046
+ <tr>
2047
+ <td class="parameter_name"><p>filename</p></td>
2048
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
2049
+ <td class="parameter_annotations"> </td>
2050
+ </tr>
2051
+ <tr>
2052
+ <td class="parameter_name"><p>mode</p></td>
2053
+ <td class="parameter_description"><p>as in <code class="function">creat()</code></p></td>
2054
+ <td class="parameter_annotations"> </td>
2055
+ </tr>
2056
+ </tbody>
2057
+ </table></div>
2058
+ </div>
2059
+ <div class="refsect3">
2060
+ <a name="id-1.5.18.7.38.9"></a><h4>Returns</h4>
2061
+ <p> a new file descriptor, or -1 if an error occurred.
2062
+ The return value can be used exactly like the return value
2063
+ from <code class="function">creat()</code>.</p>
2064
+ <p></p>
2065
+ </div>
2066
+ <p class="since">Since 2.8</p>
2067
+ </div>
2068
+ <hr>
2069
+ <div class="refsect2">
2070
+ <a name="g-chdir"></a><h3>g_chdir ()</h3>
2071
+ <pre class="programlisting"><span class="returnvalue">int</span>
2072
+ g_chdir (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *path</code></em>);</pre>
2073
+ <p>A wrapper for the POSIX <code class="function">chdir()</code> function. The function changes the
2074
+ current directory of the process to <em class="parameter"><code>path</code></em>
2075
+ .</p>
2076
+ <p>See your C library manual for more details about <code class="function">chdir()</code>.</p>
2077
+ <div class="refsect3">
2078
+ <a name="id-1.5.18.7.39.6"></a><h4>Parameters</h4>
2079
+ <div class="informaltable"><table width="100%" border="0">
2080
+ <colgroup>
2081
+ <col width="150px" class="parameters_name">
2082
+ <col class="parameters_description">
2083
+ <col width="200px" class="parameters_annotations">
2084
+ </colgroup>
2085
+ <tbody><tr>
2086
+ <td class="parameter_name"><p>path</p></td>
2087
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
2088
+ <td class="parameter_annotations"> </td>
2089
+ </tr></tbody>
2090
+ </table></div>
2091
+ </div>
2092
+ <div class="refsect3">
2093
+ <a name="id-1.5.18.7.39.7"></a><h4>Returns</h4>
2094
+ <p> 0 on success, -1 if an error occurred.</p>
2095
+ <p></p>
2096
+ </div>
2097
+ <p class="since">Since 2.8</p>
2098
+ </div>
2099
+ <hr>
2100
+ <div class="refsect2">
2101
+ <a name="g-utime"></a><h3>g_utime ()</h3>
2102
+ <pre class="programlisting"><span class="returnvalue">int</span>
2103
+ g_utime (<em class="parameter"><code>const <a class="link" href="glib-Basic-Types.html#gchar" title="gchar"><span class="type">gchar</span></a> *filename</code></em>,
2104
+ <em class="parameter"><code><span class="type">struct utimbuf</span> *utb</code></em>);</pre>
2105
+ <p>A wrapper for the POSIX <code class="function">utime()</code> function. The <code class="function">utime()</code> function
2106
+ sets the access and modification timestamps of a file.</p>
2107
+ <p>See your C library manual for more details about how <code class="function">utime()</code> works
2108
+ on your system.</p>
2109
+ <div class="refsect3">
2110
+ <a name="id-1.5.18.7.40.6"></a><h4>Parameters</h4>
2111
+ <div class="informaltable"><table width="100%" border="0">
2112
+ <colgroup>
2113
+ <col width="150px" class="parameters_name">
2114
+ <col class="parameters_description">
2115
+ <col width="200px" class="parameters_annotations">
2116
+ </colgroup>
2117
+ <tbody>
2118
+ <tr>
2119
+ <td class="parameter_name"><p>filename</p></td>
2120
+ <td class="parameter_description"><p>a pathname in the GLib file name encoding (UTF-8 on Windows)</p></td>
2121
+ <td class="parameter_annotations"> </td>
2122
+ </tr>
2123
+ <tr>
2124
+ <td class="parameter_name"><p>utb</p></td>
2125
+ <td class="parameter_description"><p>a pointer to a struct utimbuf.</p></td>
2126
+ <td class="parameter_annotations"> </td>
2127
+ </tr>
2128
+ </tbody>
2129
+ </table></div>
2130
+ </div>
2131
+ <div class="refsect3">
2132
+ <a name="id-1.5.18.7.40.7"></a><h4>Returns</h4>
2133
+ <p> 0 if the operation was successful, -1 if an error occurred</p>
2134
+ <p></p>
2135
+ </div>
2136
+ <p class="since">Since 2.18</p>
2137
+ </div>
2138
+ <hr>
2139
+ <div class="refsect2">
2140
+ <a name="g-close"></a><h3>g_close ()</h3>
2141
+ <pre class="programlisting"><a class="link" href="glib-Basic-Types.html#gboolean" title="gboolean"><span class="returnvalue">gboolean</span></a>
2142
+ g_close (<em class="parameter"><code><a class="link" href="glib-Basic-Types.html#gint" title="gint"><span class="type">gint</span></a> fd</code></em>,
2143
+ <em class="parameter"><code><a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a> **error</code></em>);</pre>
2144
+ <p>This wraps the <code class="function">close()</code> call; in case of error, <code class="literal">errno</code> will be
2145
+ preserved, but the error will also be stored as a <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a> in <em class="parameter"><code>error</code></em>
2146
+ .</p>
2147
+ <p>Besides using <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a>, there is another major reason to prefer this
2148
+ function over the call provided by the system; on Unix, it will
2149
+ attempt to correctly handle <code class="literal">EINTR</code>, which has platform-specific
2150
+ semantics.</p>
2151
+ <div class="refsect3">
2152
+ <a name="id-1.5.18.7.41.6"></a><h4>Parameters</h4>
2153
+ <div class="informaltable"><table width="100%" border="0">
2154
+ <colgroup>
2155
+ <col width="150px" class="parameters_name">
2156
+ <col class="parameters_description">
2157
+ <col width="200px" class="parameters_annotations">
2158
+ </colgroup>
2159
+ <tbody>
2160
+ <tr>
2161
+ <td class="parameter_name"><p>fd</p></td>
2162
+ <td class="parameter_description"><p>A file descriptor</p></td>
2163
+ <td class="parameter_annotations"> </td>
2164
+ </tr>
2165
+ <tr>
2166
+ <td class="parameter_name"><p>error</p></td>
2167
+ <td class="parameter_description"><p>a <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a></p></td>
2168
+ <td class="parameter_annotations"> </td>
2169
+ </tr>
2170
+ </tbody>
2171
+ </table></div>
2172
+ </div>
2173
+ <p class="since">Since 2.36</p>
2174
+ </div>
2175
+ </div>
2176
+ <div class="refsect1">
2177
+ <a name="glib-File-Utilities.other_details"></a><h2>Types and Values</h2>
2178
+ <div class="refsect2">
2179
+ <a name="GFileError"></a><h3>enum GFileError</h3>
2180
+ <p>Values corresponding to <em class="parameter"><code>errno</code></em>
2181
+ codes returned from file operations
2182
+ on UNIX. Unlike <em class="parameter"><code>errno</code></em>
2183
+ codes, GFileError values are available on
2184
+ all systems, even Windows. The exact meaning of each code depends
2185
+ on what sort of file operation you were performing; the UNIX
2186
+ documentation gives more details. The following error code descriptions
2187
+ come from the GNU C Library manual, and are under the copyright
2188
+ of that manual.</p>
2189
+ <p>It's not very portable to make detailed assumptions about exactly
2190
+ which errors will be returned from a given operation. Some errors
2191
+ don't occur on some systems, etc., sometimes there are subtle
2192
+ differences in when a system will report a given error, etc.</p>
2193
+ <div class="refsect3">
2194
+ <a name="id-1.5.18.8.2.5"></a><h4>Members</h4>
2195
+ <div class="informaltable"><table width="100%" border="0">
2196
+ <colgroup>
2197
+ <col width="300px" class="enum_members_name">
2198
+ <col class="enum_members_description">
2199
+ <col width="200px" class="enum_members_annotations">
2200
+ </colgroup>
2201
+ <tbody>
2202
+ <tr>
2203
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-EXIST:CAPS"></a>G_FILE_ERROR_EXIST</p></td>
2204
+ <td class="enum_member_description">
2205
+ <p>Operation not permitted; only the owner of
2206
+ the file (or other resource) or processes with special privileges
2207
+ can perform the operation.</p>
2208
+ </td>
2209
+ <td class="enum_member_annotations"> </td>
2210
+ </tr>
2211
+ <tr>
2212
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-ISDIR:CAPS"></a>G_FILE_ERROR_ISDIR</p></td>
2213
+ <td class="enum_member_description">
2214
+ <p>File is a directory; you cannot open a directory
2215
+ for writing, or create or remove hard links to it.</p>
2216
+ </td>
2217
+ <td class="enum_member_annotations"> </td>
2218
+ </tr>
2219
+ <tr>
2220
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-ACCES:CAPS"></a>G_FILE_ERROR_ACCES</p></td>
2221
+ <td class="enum_member_description">
2222
+ <p>Permission denied; the file permissions do not
2223
+ allow the attempted operation.</p>
2224
+ </td>
2225
+ <td class="enum_member_annotations"> </td>
2226
+ </tr>
2227
+ <tr>
2228
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-NAMETOOLONG:CAPS"></a>G_FILE_ERROR_NAMETOOLONG</p></td>
2229
+ <td class="enum_member_description">
2230
+ <p>Filename too long.</p>
2231
+ </td>
2232
+ <td class="enum_member_annotations"> </td>
2233
+ </tr>
2234
+ <tr>
2235
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-NOENT:CAPS"></a>G_FILE_ERROR_NOENT</p></td>
2236
+ <td class="enum_member_description">
2237
+ <p>No such file or directory. This is a "file
2238
+ doesn't exist" error for ordinary files that are referenced in
2239
+ contexts where they are expected to already exist.</p>
2240
+ </td>
2241
+ <td class="enum_member_annotations"> </td>
2242
+ </tr>
2243
+ <tr>
2244
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-NOTDIR:CAPS"></a>G_FILE_ERROR_NOTDIR</p></td>
2245
+ <td class="enum_member_description">
2246
+ <p>A file that isn't a directory was specified when
2247
+ a directory is required.</p>
2248
+ </td>
2249
+ <td class="enum_member_annotations"> </td>
2250
+ </tr>
2251
+ <tr>
2252
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-NXIO:CAPS"></a>G_FILE_ERROR_NXIO</p></td>
2253
+ <td class="enum_member_description">
2254
+ <p>No such device or address. The system tried to
2255
+ use the device represented by a file you specified, and it
2256
+ couldn't find the device. This can mean that the device file was
2257
+ installed incorrectly, or that the physical device is missing or
2258
+ not correctly attached to the computer.</p>
2259
+ </td>
2260
+ <td class="enum_member_annotations"> </td>
2261
+ </tr>
2262
+ <tr>
2263
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-NODEV:CAPS"></a>G_FILE_ERROR_NODEV</p></td>
2264
+ <td class="enum_member_description">
2265
+ <p>The underlying file system of the specified file
2266
+ does not support memory mapping.</p>
2267
+ </td>
2268
+ <td class="enum_member_annotations"> </td>
2269
+ </tr>
2270
+ <tr>
2271
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-ROFS:CAPS"></a>G_FILE_ERROR_ROFS</p></td>
2272
+ <td class="enum_member_description">
2273
+ <p>The directory containing the new link can't be
2274
+ modified because it's on a read-only file system.</p>
2275
+ </td>
2276
+ <td class="enum_member_annotations"> </td>
2277
+ </tr>
2278
+ <tr>
2279
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-TXTBSY:CAPS"></a>G_FILE_ERROR_TXTBSY</p></td>
2280
+ <td class="enum_member_description">
2281
+ <p>Text file busy.</p>
2282
+ </td>
2283
+ <td class="enum_member_annotations"> </td>
2284
+ </tr>
2285
+ <tr>
2286
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-FAULT:CAPS"></a>G_FILE_ERROR_FAULT</p></td>
2287
+ <td class="enum_member_description">
2288
+ <p>You passed in a pointer to bad memory.
2289
+ (GLib won't reliably return this, don't pass in pointers to bad
2290
+ memory.)</p>
2291
+ </td>
2292
+ <td class="enum_member_annotations"> </td>
2293
+ </tr>
2294
+ <tr>
2295
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-LOOP:CAPS"></a>G_FILE_ERROR_LOOP</p></td>
2296
+ <td class="enum_member_description">
2297
+ <p>Too many levels of symbolic links were encountered
2298
+ in looking up a file name. This often indicates a cycle of symbolic
2299
+ links.</p>
2300
+ </td>
2301
+ <td class="enum_member_annotations"> </td>
2302
+ </tr>
2303
+ <tr>
2304
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-NOSPC:CAPS"></a>G_FILE_ERROR_NOSPC</p></td>
2305
+ <td class="enum_member_description">
2306
+ <p>No space left on device; write operation on a
2307
+ file failed because the disk is full.</p>
2308
+ </td>
2309
+ <td class="enum_member_annotations"> </td>
2310
+ </tr>
2311
+ <tr>
2312
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-NOMEM:CAPS"></a>G_FILE_ERROR_NOMEM</p></td>
2313
+ <td class="enum_member_description">
2314
+ <p>No memory available. The system cannot allocate
2315
+ more virtual memory because its capacity is full.</p>
2316
+ </td>
2317
+ <td class="enum_member_annotations"> </td>
2318
+ </tr>
2319
+ <tr>
2320
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-MFILE:CAPS"></a>G_FILE_ERROR_MFILE</p></td>
2321
+ <td class="enum_member_description">
2322
+ <p>The current process has too many files open and
2323
+ can't open any more. Duplicate descriptors do count toward this
2324
+ limit.</p>
2325
+ </td>
2326
+ <td class="enum_member_annotations"> </td>
2327
+ </tr>
2328
+ <tr>
2329
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-NFILE:CAPS"></a>G_FILE_ERROR_NFILE</p></td>
2330
+ <td class="enum_member_description">
2331
+ <p>There are too many distinct file openings in the
2332
+ entire system.</p>
2333
+ </td>
2334
+ <td class="enum_member_annotations"> </td>
2335
+ </tr>
2336
+ <tr>
2337
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-BADF:CAPS"></a>G_FILE_ERROR_BADF</p></td>
2338
+ <td class="enum_member_description">
2339
+ <p>Bad file descriptor; for example, I/O on a
2340
+ descriptor that has been closed or reading from a descriptor open
2341
+ only for writing (or vice versa).</p>
2342
+ </td>
2343
+ <td class="enum_member_annotations"> </td>
2344
+ </tr>
2345
+ <tr>
2346
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-INVAL:CAPS"></a>G_FILE_ERROR_INVAL</p></td>
2347
+ <td class="enum_member_description">
2348
+ <p>Invalid argument. This is used to indicate
2349
+ various kinds of problems with passing the wrong argument to a
2350
+ library function.</p>
2351
+ </td>
2352
+ <td class="enum_member_annotations"> </td>
2353
+ </tr>
2354
+ <tr>
2355
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-PIPE:CAPS"></a>G_FILE_ERROR_PIPE</p></td>
2356
+ <td class="enum_member_description">
2357
+ <p>Broken pipe; there is no process reading from the
2358
+ other end of a pipe. Every library function that returns this
2359
+ error code also generates a 'SIGPIPE' signal; this signal
2360
+ terminates the program if not handled or blocked. Thus, your
2361
+ program will never actually see this code unless it has handled
2362
+ or blocked 'SIGPIPE'.</p>
2363
+ </td>
2364
+ <td class="enum_member_annotations"> </td>
2365
+ </tr>
2366
+ <tr>
2367
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-AGAIN:CAPS"></a>G_FILE_ERROR_AGAIN</p></td>
2368
+ <td class="enum_member_description">
2369
+ <p>Resource temporarily unavailable; the call might
2370
+ work if you try again later.</p>
2371
+ </td>
2372
+ <td class="enum_member_annotations"> </td>
2373
+ </tr>
2374
+ <tr>
2375
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-INTR:CAPS"></a>G_FILE_ERROR_INTR</p></td>
2376
+ <td class="enum_member_description">
2377
+ <p>Interrupted function call; an asynchronous signal
2378
+ occurred and prevented completion of the call. When this
2379
+ happens, you should try the call again.</p>
2380
+ </td>
2381
+ <td class="enum_member_annotations"> </td>
2382
+ </tr>
2383
+ <tr>
2384
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-IO:CAPS"></a>G_FILE_ERROR_IO</p></td>
2385
+ <td class="enum_member_description">
2386
+ <p>Input/output error; usually used for physical read
2387
+ or write errors. i.e. the disk or other physical device hardware
2388
+ is returning errors.</p>
2389
+ </td>
2390
+ <td class="enum_member_annotations"> </td>
2391
+ </tr>
2392
+ <tr>
2393
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-PERM:CAPS"></a>G_FILE_ERROR_PERM</p></td>
2394
+ <td class="enum_member_description">
2395
+ <p>Operation not permitted; only the owner of the
2396
+ file (or other resource) or processes with special privileges can
2397
+ perform the operation.</p>
2398
+ </td>
2399
+ <td class="enum_member_annotations"> </td>
2400
+ </tr>
2401
+ <tr>
2402
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-NOSYS:CAPS"></a>G_FILE_ERROR_NOSYS</p></td>
2403
+ <td class="enum_member_description">
2404
+ <p>Function not implemented; this indicates that
2405
+ the system is missing some functionality.</p>
2406
+ </td>
2407
+ <td class="enum_member_annotations"> </td>
2408
+ </tr>
2409
+ <tr>
2410
+ <td class="enum_member_name"><p><a name="G-FILE-ERROR-FAILED:CAPS"></a>G_FILE_ERROR_FAILED</p></td>
2411
+ <td class="enum_member_description">
2412
+ <p>Does not correspond to a UNIX error code; this
2413
+ is the standard "failed for unspecified reason" error code present
2414
+ in all <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a> error code enumerations. Returned if no specific
2415
+ code applies.</p>
2416
+ </td>
2417
+ <td class="enum_member_annotations"> </td>
2418
+ </tr>
2419
+ </tbody>
2420
+ </table></div>
2421
+ </div>
2422
+ </div>
2423
+ <hr>
2424
+ <div class="refsect2">
2425
+ <a name="G-FILE-ERROR:CAPS"></a><h3>G_FILE_ERROR</h3>
2426
+ <pre class="programlisting">#define G_FILE_ERROR g_file_error_quark ()
2427
+ </pre>
2428
+ <p>Error domain for file operations. Errors in this domain will
2429
+ be from the <a class="link" href="glib-File-Utilities.html#GFileError" title="enum GFileError"><span class="type">GFileError</span></a> enumeration. See <a class="link" href="glib-Error-Reporting.html#GError" title="struct GError"><span class="type">GError</span></a> for information
2430
+ on error domains.</p>
2431
+ </div>
2432
+ <hr>
2433
+ <div class="refsect2">
2434
+ <a name="GFileTest"></a><h3>enum GFileTest</h3>
2435
+ <p>A test to perform on a file using <a class="link" href="glib-File-Utilities.html#g-file-test" title="g_file_test ()"><code class="function">g_file_test()</code></a>.</p>
2436
+ <div class="refsect3">
2437
+ <a name="id-1.5.18.8.4.4"></a><h4>Members</h4>
2438
+ <div class="informaltable"><table width="100%" border="0">
2439
+ <colgroup>
2440
+ <col width="300px" class="enum_members_name">
2441
+ <col class="enum_members_description">
2442
+ <col width="200px" class="enum_members_annotations">
2443
+ </colgroup>
2444
+ <tbody>
2445
+ <tr>
2446
+ <td class="enum_member_name"><p><a name="G-FILE-TEST-IS-REGULAR:CAPS"></a>G_FILE_TEST_IS_REGULAR</p></td>
2447
+ <td class="enum_member_description">
2448
+ <p><a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a> if the file is a regular file
2449
+ (not a directory). Note that this test will also return <a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a>
2450
+ if the tested file is a symlink to a regular file.</p>
2451
+ </td>
2452
+ <td class="enum_member_annotations"> </td>
2453
+ </tr>
2454
+ <tr>
2455
+ <td class="enum_member_name"><p><a name="G-FILE-TEST-IS-SYMLINK:CAPS"></a>G_FILE_TEST_IS_SYMLINK</p></td>
2456
+ <td class="enum_member_description">
2457
+ <p><a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a> if the file is a symlink.</p>
2458
+ </td>
2459
+ <td class="enum_member_annotations"> </td>
2460
+ </tr>
2461
+ <tr>
2462
+ <td class="enum_member_name"><p><a name="G-FILE-TEST-IS-DIR:CAPS"></a>G_FILE_TEST_IS_DIR</p></td>
2463
+ <td class="enum_member_description">
2464
+ <p><a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a> if the file is a directory.</p>
2465
+ </td>
2466
+ <td class="enum_member_annotations"> </td>
2467
+ </tr>
2468
+ <tr>
2469
+ <td class="enum_member_name"><p><a name="G-FILE-TEST-IS-EXECUTABLE:CAPS"></a>G_FILE_TEST_IS_EXECUTABLE</p></td>
2470
+ <td class="enum_member_description">
2471
+ <p><a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a> if the file is executable.</p>
2472
+ </td>
2473
+ <td class="enum_member_annotations"> </td>
2474
+ </tr>
2475
+ <tr>
2476
+ <td class="enum_member_name"><p><a name="G-FILE-TEST-EXISTS:CAPS"></a>G_FILE_TEST_EXISTS</p></td>
2477
+ <td class="enum_member_description">
2478
+ <p><a class="link" href="glib-Standard-Macros.html#TRUE:CAPS" title="TRUE"><code class="literal">TRUE</code></a> if the file exists. It may or may not
2479
+ be a regular file.</p>
2480
+ </td>
2481
+ <td class="enum_member_annotations"> </td>
2482
+ </tr>
2483
+ </tbody>
2484
+ </table></div>
2485
+ </div>
2486
+ </div>
2487
+ <hr>
2488
+ <div class="refsect2">
2489
+ <a name="GDir"></a><h3>GDir</h3>
2490
+ <pre class="programlisting">typedef struct _GDir GDir;</pre>
2491
+ <p>An opaque structure representing an opened directory.</p>
2492
+ </div>
2493
+ <hr>
2494
+ <div class="refsect2">
2495
+ <a name="GMappedFile"></a><h3>GMappedFile</h3>
2496
+ <pre class="programlisting">typedef struct _GMappedFile GMappedFile;</pre>
2497
+ <p>The <a class="link" href="glib-File-Utilities.html#GMappedFile" title="GMappedFile"><span class="type">GMappedFile</span></a> represents a file mapping created with
2498
+ <a class="link" href="glib-File-Utilities.html#g-mapped-file-new" title="g_mapped_file_new ()"><code class="function">g_mapped_file_new()</code></a>. It has only private members and should
2499
+ not be accessed directly.</p>
2500
+ </div>
2501
+ <hr>
2502
+ <div class="refsect2">
2503
+ <a name="GStatBuf"></a><h3>GStatBuf</h3>
2504
+ <pre class="programlisting">typedef struct _stat32 GStatBuf;
2505
+ </pre>
2506
+ <p>A type corresponding to the appropriate struct type for the <code class="function">stat()</code>
2507
+ system call, depending on the platform and/or compiler being used.</p>
2508
+ <p>See <a class="link" href="glib-File-Utilities.html#g-stat" title="g_stat ()"><code class="function">g_stat()</code></a> for more information.</p>
2509
+ </div>
2510
+ </div>
2511
+ </div>
2512
+ <div class="footer">
2513
+ <hr>
2514
+ Generated by GTK-Doc V1.21.1</div>
2515
+ </body>
2516
+ </html>