| I/O, Modules and System Interface Serialization |
categories Platform Miscellaneous |
Environment variables |
| categories | Miscellaneous | normal dispatch | [XL] Core method |
chroot(dirname) causes dirname to become the root directory, that is, the starting point for path searches of pathnames beginning with '/'.
This call is restricted to the super-user.
| categories | Miscellaneous | normal dispatch | [XL] Kernel method |
color() returns the current color mode that can be on of :
| categories | Miscellaneous | normal dispatch | [XL] Kernel method |
color(c) sets the color mode to c and returns the previous color mode
| categories | Miscellaneous | normal dispatch | [XL] Kernel method |
color_princ(s) prints the string s on the current output (cout()). The string s may contain color sequences that will be printed as color modifiers according to the current color mode.
| categories | Miscellaneous | normal dispatch | [XL] Kernel method |
ding() prints on stdout the "bell" char (ASCII 0x7).
| categories | Miscellaneous | normal dispatch | Core method |
exit(n) stops CLAIRE and returns to the hosting system the value n. What can happen next is platform-dependent.
| categories | Miscellaneous | normal dispatch | Core method |
gc() forces a garbage collection to take place.
| categories | Miscellaneous | normal dispatch | [XL] Kernel method |
getlocale(s) returns the current locale for the given category cat (see setlocale).
| categories | Miscellaneous | normal dispatch | [XL] Kernel method |
pwd() is used to obtain the path of the current working directory. this directory may be changed with setcwd.
| categories | Miscellaneous | normal dispatch | Core method |
returns a release number of your CLAIRE system (<release>.<version>.<revision>).
| categories | Miscellaneous | normal dispatch | [XL] Kernel method |
setcwd(s) set the current working directory to the path s. this path can then be obtained with pwd.
| categories | Miscellaneous | normal dispatch | [XL] Kernel method |
setlocale(cat, s) is a wrapper for the C lib setlocale. It sets the notion of natural language formatting style for particular sets of routines. The cat argument defines the category of the routine setlocale applies (see man). cat is one of the following :
| categories | Miscellaneous | normal dispatch | Core method |
Passes the command s to the operating system (the shell) and returns the exit status of the command execution.
| categories | Miscellaneous | normal dispatch | [XL] Kernel method |
sleep(t) suspends the execution of the process for t ms.
| categories | Miscellaneous | normal dispatch | [XL] Core method |
unix?() tell if the underlying system is a UNIX (vs. windows).