char *strchr( const char *str, int c )



	- prototype in string.h

	- scans str for first occurrence of c
	- returns pointer to c in str, or NULL if not found