12 lines
145 B
C
12 lines
145 B
C
// option1.h : Option 1 (Standard): Console Text Editor.
|
|
|
|
#pragma once
|
|
|
|
#ifndef OPTION1_H
|
|
#define OPTION1_H
|
|
|
|
int RunApp();
|
|
|
|
|
|
#endif // OPTION1_H
|