how do i load a text file?

i need a code that will load a .txt file according to a text actor's text
now all i need is the code above
now all i need is the code above
Game Editor discussion board
http://game-editor.com/forum/
void readtext(char *fileName, char *s)
{
int c;
FILE *fp = fopen(fileName, "r");
if(fp)
{
while((c = fgetc(fp)) >= 0) *s++ = c;
fclose(fp);
}
*s = 0;
}
readLines("myfile.txt", mytextactor.text);