Like so.
Code:
char buff[BUFSIZ];
while ( fgets(buff,BUFSIZ,fptr) != NULL ) {
    if ( strstr(buff,FIND) != NULL ) {
        printf("Found %s", buff);
    }
}