forked from scott/threaded_network_chat
12 lines
190 B
C++
12 lines
190 B
C++
#ifndef DISP_H
|
|
#define DISP_H
|
|
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
void clearRows(int startingRow, int endingRow);
|
|
int displayFile(string path, int startLineNum, int numLines);
|
|
|
|
#endif
|