Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

set_config_float(3alleg4) [opendarwin man page]

set_config_float(3alleg4)					  Allegro manual					 set_config_float(3alleg4)

NAME
set_config_float - Writes a float in the configuration file. Allegro game programming library. SYNOPSIS
#include <allegro.h> void set_config_float(const char *section, const char *name, float val); DESCRIPTION
Writes a floating point variable to the current config file. See the comments about set_config_string(). SEE ALSO
set_config_file(3alleg4), get_config_float(3alleg4), set_config_string(3alleg4), set_config_hex(3alleg4), set_config_int(3alleg4), set_con- fig_id(3alleg4) Allegro version 4.4.2 set_config_float(3alleg4)

Check Out this Related Man Page

set_config_string(3alleg4)					  Allegro manual					set_config_string(3alleg4)

NAME
set_config_string - Writes a string in the configuration file. Allegro game programming library. SYNOPSIS
#include <allegro.h> void set_config_string(const char *section, const char *name, const char *val); DESCRIPTION
Writes a string variable to the current config file, replacing any existing value it may have, or removes the variable if `val' is NULL. The section name may be set to NULL to write the variable to the root of the file, or used to control which section the variable is inserted into. The altered file will be cached in memory, and not actually written to disk until you call allegro_exit(). Note that you can only write to files in this way, so the function will have no effect if the current config source was specified with set_config_data() rather than set_config_file(). As a special case, variable or section names that begin with a '#' character are treated specially and will not be read from or written to the disk. Addon packages can use this to store version info or other status information into the config module, from where it can be read with the get_config_string() function. SEE ALSO
set_config_file(3alleg4), get_config_string(3alleg4), set_config_float(3alleg4), set_config_hex(3alleg4), set_config_int(3alleg4), set_con- fig_id(3alleg4) Allegro version 4.4.2 set_config_string(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