/**
 ** Yeah, got errors compiling after I added return types
 ** for some of the functions. Since they were referenced
 ** before they were declared in the file.
 ** I thought that making a header file was a better solution
 ** than juggling the location of the functions in the C file.
 **
 ** Keith A. Pray
 ** October, 2000
 **/

#ifndef _INCOMETRAIN_H_

#define _INCOMETRAIN_H_

/*** functions ***/

void backprop_face();
void performance_on_imagelist();
int evaluate_performance();
void printusage();

#endif
