13 lines
243 B
C++
13 lines
243 B
C++
#ifndef MENU_UTILS_H
|
|
#define MENU_UTILS_H
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
|
|
#include<stdio.h>
|
|
#include<iostream>
|
|
using namespace std;
|
|
|
|
void checkOptInput(int& opt, int low, int high);
|
|
string doubleToString(double num);
|
|
|
|
#endif // !MENU_UTILS_H
|