Synopsis:
sys_fhwrites(file_handle,string)
Arguments:
file_handle - The file handle to write to
string - The string to write to the file
Description: This function writes the given string to the file specified by file_handle. Unlike sys_fhputline() this function will not append to the end of the file, it will write the string from the current file position and it will NOT append a carriage return or line-feed character.
Return Value
The function will return 0 in sucess or an negative error code.