Guchar
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) (Created page with "{{FormatInfo | name = guchar | formattype = electronic | subcat = Data types | subcat2 = GLib library data types | subcat3 = | subcat4 ...") |
Dan Tobias (Talk | contribs) |
||
Line 22: | Line 22: | ||
{{DISPLAYTITLE:guchar}} | {{DISPLAYTITLE:guchar}} | ||
− | '''guchar''' is exactly the same as the [[C]] language [[unsigned char (C)|char]] data type; it is included in GLib for completeness. This consists of a single 8-bit byte which unambiguously represents a number (or character code point) from 0 to 255; usually the regular char (or [[gchar]]) does too, but that could also be construed as a signed number from -128 to 127. | + | '''guchar''' is exactly the same as the [[C]] language [[unsigned char (C)|unsigned char]] data type; it is included in GLib for completeness. This consists of a single 8-bit byte which unambiguously represents a number (or character code point) from 0 to 255; usually the regular char (or [[gchar]]) does too, but that could also be construed as a signed number from -128 to 127. |
[[Category:Symbolic data types]] | [[Category:Symbolic data types]] | ||
[[Category:Enumerable data types]] | [[Category:Enumerable data types]] |
Latest revision as of 05:35, 2 July 2019
guchar is exactly the same as the C language unsigned char data type; it is included in GLib for completeness. This consists of a single 8-bit byte which unambiguously represents a number (or character code point) from 0 to 255; usually the regular char (or gchar) does too, but that could also be construed as a signed number from -128 to 127.