Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

textprintf_right_ex(3alleg4) [opendarwin man page]

textprintf_right_ex(3alleg4)					  Allegro manual				      textprintf_right_ex(3alleg4)

NAME
textprintf_right_ex - Formatted right aligned output of a string. Allegro game programming library. SYNOPSIS
#include <allegro.h> void textprintf_right_ex(BITMAP *bmp, const FONT *f, int x, y, color, bg, const char *fmt, ...); DESCRIPTION
Like textprintf_ex(), but interprets the x coordinate as the right rather than the left edge of the string. This function shares the text length limitation of textprintf_ex(). Example: textprintf_right_ex(screen, font, SCREEN_W - 10, 10, makecol(200, 200, 20), -1, "%d bullets left", player_ammo); SEE ALSO
textprintf_ex(3alleg4), textout_right_ex(3alleg4), exmouse(3alleg4) Allegro version 4.4.2 textprintf_right_ex(3alleg4)

Check Out this Related Man Page

textprintf_ex(3alleg4)						  Allegro manual					    textprintf_ex(3alleg4)

NAME
textprintf_ex - Formatted output of a string. Allegro game programming library. SYNOPSIS
#include <allegro.h> void textprintf_ex(BITMAP *bmp, const FONT *f, int x, int y, int color, int bg, const char *fmt, ...); DESCRIPTION
Formatted text output, using a printf() style format string. Due to an internal limitation, this function can't be used for extremely long texts. If you happen to reach this limit, you can work around it by using uszprintf() and textout_ex(), which don't have any. Example: int player_score; ... textprintf_ex(screen, font, 10, 10, makecol(255, 100, 200), -1, "Score: %d", player_score); SEE ALSO
font(3alleg4), textout_ex(3alleg4), textprintf_centre_ex(3alleg4), textprintf_right_ex(3alleg4), textprintf_justify_ex(3alleg4), text_height(3alleg4), text_length(3alleg4), uszprintf(3alleg4) Allegro version 4.4.2 textprintf_ex(3alleg4)
Man Page

2 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Shopt -s histappend

What is the point of this? Whenever I close my shell it appends to the history file without adding this. I have never seen it overwrite my history file. # When the shell exits, append to the history file instead of overwriting it shopt -s histappend (3 Replies)
Discussion started by: cokedude
3 Replies

2. OS X (Apple)

Undeletable file

Greetings, I'm trying to delete a file with a weird name from within Terminal on a Mac. It's a very old file (1992) with null characters in the name: “␀␀Word FinderÂŽ Plus™”. Here are some examples of what I've tried: 12FX009:5 dpontius$ ls ␀␀Word FinderÂŽ Plus™ 12FX009:5 dpontius$ rm... (29 Replies)
Discussion started by: dpontius
29 Replies