GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
ugetx(3) Allegro manual ugetx(3)

ugetx, ugetxc - Low level helper function for reading Unicode text data. Allegro game programming library.

#include <allegro.h>

int ugetx(char **s);

int ugetxc(const char **s);

Low level helper function for reading Unicode text data. ugetxc is provided for working with pointer-to-pointer-to-const char data. Example:

   char *p = string;
   int first_letter, second_letter, third_letter;
   first_letter = ugetx(&p);
   second_letter = ugetx(&p);
   third_letter = ugetx(&p);

Returns the character pointed to by `s' in the current encoding format, and advances the pointer to the next character after the one just returned.

ugetc(3), usetc(3), uwidth(3), ucwidth(3), uisok(3)
version 4.4.3 Allegro

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.