hello,

I want help you :

a function I made ^^ :

Code:
// read data in file by djfeeler

#include <acknex.h>
#include <default.c>


STRING* F_read_file(STRING* Ent_file,STRING* Ent_name_found)
{
	STRING* LV_str_return = "";
	
	var LV_file_found = file_open_read(Ent_file);
	if(LV_file_found!=0)
	{
		if(file_find(LV_file_found,Ent_name_found)>0)
		{
			file_str_read(LV_file_found,LV_str_return);
		}
		file_close(LV_file_found);	
	}
	
	return LV_str_return;
}


function main()
{
	error(F_read_file("text.txt","START"));
}



in File text.txt write : START help

The word help will display

djfeeler