]> git.sesse.net Git - stockfish/blobdiff - src/misc.h
Move Min() and Max() macros to types.h
[stockfish] / src / misc.h
index 8c3cf86e5aa52b77066cc60603e190447d872fdd..55f4afdea244e5069f3d5f180e542982599c6ff2 100644 (file)
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-
 #if !defined(MISC_H_INCLUDED)
 #define MISC_H_INCLUDED
 
-
-////
-//// Includes
-////
-
-#include <fstream>
 #include <string>
 
 #include "types.h"
 
-////
-//// Macros
-////
-
-#define Min(x, y) (((x) < (y))? (x) : (y))
-#define Max(x, y) (((x) < (y))? (y) : (x))
-
-
-////
-//// Prototypes
-////
-
 extern const std::string engine_name();
+extern const std::string engine_author();
 extern int get_system_time();
 extern int cpu_count();
-extern int data_available();
+extern int input_available();
 extern void prefetch(char* addr);
 extern void prefetchPawn(Key, int);
 
-
-////
-//// Debug
-////
-
+// Debug functions
 extern bool dbg_show_mean;
 extern bool dbg_show_hit_rate;
-
 extern void dbg_hit_on(bool b);
 extern void dbg_hit_on_c(bool c, bool b);
 extern void dbg_before();