Index: init.h
===================================================================
--- init.h	(revision 253)
+++ init.h	(revision 254)
@@ -11,29 +11,6 @@
 some interesting functions. 
 **/
 
-extern int raydium_init_cli_option (char *option, char *value);
-/**
-This function will search command line ##option##.
-If this option is found, the functions stores any argument to ##value## and
-returns 1.
-The function will return 0 if ##option## is not found.
-
-Example (search for: ##--ground##)
-%%(c)
-char model[RAYDIUM_MAX_NAME_LEN];
-if(raydium_init_cli_option("ground",model))
-    {
-    setground(model);
-    }
-%%
-**/
-
-extern int raydium_init_cli_option_default (char *option, char *value, char *default_value);
-/**
-Same as above, but allows you to provide a default value (##default##) if
-the ##option## is not found on command line.
-**/
-
 extern void raydium_init_lights (void);
 /**
 Internal use. Must be moved to light.c.
@@ -63,18 +40,4 @@
 huge memory leaks.
 **/
 
-extern void raydium_init_args (int argc, char **argv);
-/**
-You must use this function, wich send application arguments to Raydium 
-and external libs (GLUT, OpenAL, ...).
-This must be done **before** any other call to Raydium.
-Example:
-%%(c)
-int main(int argc, char **argv)
-{
-raydium_init_args(argc,argv);
-[...]
-%%
-**/
-
 #endif