NAME
	read_bytes - read a number of bytes into a string from a file

SYNTAX
	#include <stdio.h>

	string read_bytes(string file,int start,int len);

DESCRIPTION
	Read len number of bytes from file file staring at byte start and
	return it as a string.

KEYWORDS
	file

SEE ALSO
	write_file

