Unix and Linux Discussions Tagged with range |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
71,357 |
Shell Programming and Scripting |
|
|
|
1 |
4,738 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,235 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
5,062 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
5,641 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
4,185 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
11,247 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
3,394 |
Programming |
|
|
|
9 |
4,236 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,490 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
9,267 |
Shell Programming and Scripting |
|
|
|
1 |
4,323 |
Shell Programming and Scripting |
|
|
|
7 |
2,324 |
Shell Programming and Scripting |
|
|
|
4 |
3,632 |
Shell Programming and Scripting |
|
|
|
6 |
3,638 |
Shell Programming and Scripting |
|
|
|
1 |
3,538 |
Shell Programming and Scripting |
|
|
|
9 |
40,338 |
Shell Programming and Scripting |
|
|
|
9 |
6,711 |
Shell Programming and Scripting |
|
|
|
9 |
3,602 |
Shell Programming and Scripting |
|
|
|
2 |
5,888 |
Shell Programming and Scripting |
|
|
|
2 |
10,218 |
Shell Programming and Scripting |
|
|
|
4 |
2,416 |
Shell Programming and Scripting |
|
|
|
3 |
3,567 |
Shell Programming and Scripting |
|
|
|
4 |
16,096 |
Shell Programming and Scripting |
|
|
|
36 |
129,032 |
IP Networking |
|
|
|
11 |
15,164 |
UNIX for Dummies Questions & Answers |
|
|
|
9 |
5,835 |
Shell Programming and Scripting |
|
|
|
0 |
3,066 |
What is on Your Mind? |
|
|
|
8 |
4,036 |
Programming |
|
|
|
5 |
2,631 |
Shell Programming and Scripting |
|
|
|
2 |
2,446 |
Shell Programming and Scripting |
|
|
|
1 |
5,337 |
Shell Programming and Scripting |
|
|
|
3 |
2,387 |
Solaris |
|
|
|
2 |
4,037 |
Shell Programming and Scripting |
|
|
|
2 |
3,948 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,408 |
Solaris |
|
|
|
5 |
3,263 |
Shell Programming and Scripting |
|
|
|
2 |
4,458 |
UNIX and Linux Applications |
|
|
|
0 |
2,058 |
UNIX and Linux RSS News |
|
|
|
4 |
1,976 |
UNIX for Advanced & Expert Users |
get_font_range_end(3alleg4) Allegro manual get_font_range_end(3alleg4)
NAME
get_font_range_end - Returns the last character of a character range in a font. Allegro game programming library.
SYNOPSIS
#include <allegro.h>
int get_font_range_end(FONT *f, int range)
DESCRIPTION
This function allows you to find out the index to the last character of a character range for a font. You can pass -1 for the range parame-
ter if you want to know the start of the whole font range, or a number from 0 to (but not including) get_font_ranges(f) to get the start of
a specific character range in the font. You should check the start and end of all font ranges to see if a specific character is actually
available in the font. Not all characters in the range returned by get_font_range_begin(f, -1) and get_font_range_end(f, -1) need to be
available! Example:
printf("The font has a character range of %d - %d
",
get_font_range_begin(font, -1),
get_font_range_end(font, -1));
RETURN VALUE
Returns the last character in the font range, or -1 if that information is not available.
SEE ALSO
get_font_ranges(3alleg4), get_font_range_begin(3alleg4), transpose_font(3alleg4)
Allegro version 4.4.2 get_font_range_end(3alleg4)