Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

need_uconvert(3alleg4) [v7 man page]

need_uconvert(3alleg4)						  Allegro manual					    need_uconvert(3alleg4)

NAME
need_uconvert - Tells if a string requires encoding conversion. Allegro game programming library. SYNOPSIS
#include <allegro.h> int need_uconvert(const char *s, int type, int newtype); DESCRIPTION
Given a pointer to a string (`s'), a description of the type of the string (`type'), and the type that you would like this string to be converted into (`newtype'), this function tells you whether any conversion is required. No conversion will be needed if `type' and `new- type' are the same, or if one type is ASCII, the other is UTF-8, and the string contains only character values less than 128. As a conve- nience shortcut, you can pass the value U_CURRENT as either of the type parameters, to represent whatever text encoding format is currently selected. Example: if (need_uconvert(text, U_UTF8, U_CURRENT)) { /* conversion is required */ } RETURN VALUE
Returns non-zero if any conversion is required or zero otherwise. SEE ALSO
set_uformat(3alleg4), get_uformat(3alleg4), do_uconvert(3alleg4), uconvert(3alleg4) Allegro version 4.4.2 need_uconvert(3alleg4)

Check Out this Related Man Page

need_uconvert(3alleg4)						  Allegro manual					    need_uconvert(3alleg4)

NAME
need_uconvert - Tells if a string requires encoding conversion. Allegro game programming library. SYNOPSIS
#include <allegro.h> int need_uconvert(const char *s, int type, int newtype); DESCRIPTION
Given a pointer to a string (`s'), a description of the type of the string (`type'), and the type that you would like this string to be converted into (`newtype'), this function tells you whether any conversion is required. No conversion will be needed if `type' and `new- type' are the same, or if one type is ASCII, the other is UTF-8, and the string contains only character values less than 128. As a conve- nience shortcut, you can pass the value U_CURRENT as either of the type parameters, to represent whatever text encoding format is currently selected. Example: if (need_uconvert(text, U_UTF8, U_CURRENT)) { /* conversion is required */ } RETURN VALUE
Returns non-zero if any conversion is required or zero otherwise. SEE ALSO
set_uformat(3alleg4), get_uformat(3alleg4), do_uconvert(3alleg4), uconvert(3alleg4) Allegro version 4.4.2 need_uconvert(3alleg4)
Man Page

7 More Discussions You Might Find Interesting

1. Programming

Binary to text format conversion

Hi, Please can any one tell me how to convert binary data to text format and vice versa. If possible give me the algorithm or C program. Thanks in advance Waiting for reply Bye:o (5 Replies)
Discussion started by: manjunath
5 Replies

2. Programming

binary to string conversion and vice versa

please let me know that in unix using c programming language we can do binary to string conversion and vice versa using ltoa and atol but how can we do it in c++ programming language. thank you in advance. (3 Replies)
Discussion started by: kinnaree
3 Replies

3. Programming

inmemory conversion equivalent in c++

sscanf() is used in c for inmemory conversion. Is there any routine provided in c++ that allows us to perform the same task(i.e inmemory conversion) as performed by sscanf in c. I f any one knows plz tell me about it. Thanks. (0 Replies)
Discussion started by: kinnaree
0 Replies

4. Shell Programming and Scripting

error during run: St9bad_alloc - Getting this error while using some conversion progr

Hi all, It will be very useful If you spare some time with me for this worrying error. I am calling a conversion program which is written in C++ for converting a file format to different format. It was working fine for this past 2 yrs. But now it is not working since the file size has been... (1 Reply)
Discussion started by: sathu_pec
1 Replies

5. Programming

Hex string conversion?

Hello all. I need help... How can I cenvert this 42ec93df826c804ea531c56594db453d54daad4b to normal text? What convertor I have to use? Thanks. (12 Replies)
Discussion started by: escudo
12 Replies

6. UNIX for Dummies Questions & Answers

Selective case conversion of a file

Hi all, I have a requirement to convert a file from one format to another. Parent file: to i.e., 1.) all the lines which begin with "Sample:", should be converted in such a way that entire text after ":" gets converted into all-lower case. 2.) all the lines which begin with... (7 Replies)
Discussion started by: dipanchandra
7 Replies

7. Programming

ASCII to netcdf conversion..in C programming

Hi... Great minds.... I have need of ascii to netcdf conversion,,,,,using C programming... Can any experts do this task... here I attached my file.... fill missing value -999 in a grid.. (where there is no data) first it has read text file (txt) and then it has to find number... (1 Reply)
Discussion started by: nex_asp
1 Replies