PDA

Click to See Complete Forum and Search --> : Can you please explain these functions!


abdul
Jul 19th, 2001, 08:47 PM
strcpy
getcwd
chdir
_lread
_lclose

Chris
Jul 19th, 2001, 10:19 PM
here it is...

strcpy is copy a character into a assign buffer.
getcwd is to retrieve the current working directory. (as the function named, get current working directory)
chdir = _chdir is to change the current working directory. (as the function named, change current working directory)
_lread is to read the data from a specified file.
_lclose is to close the specified file

regards,

abdul
Jul 19th, 2001, 11:41 PM
thanks a lot!