Introduction
Statistics
Contact
Development
Disclaimer
Help
sdf.org home page
/*
* File: valid.h
* Purpose: Read input from a user, but only return it for valid
* ranges.
*/
int getInt(int min, int max);
double getDouble(double min, double max);
char getChar(char min, char max);