15 lines
259 B
C
15 lines
259 B
C
// Option 1: Console Text Editor
|
|
// Uses a doubly linked list for storing document lines,
|
|
// two stacks for undo/redo operations,
|
|
// and a queue for print-job management.
|
|
|
|
#pragma once
|
|
|
|
#ifndef OPTION1_H
|
|
#define OPTION1_H
|
|
|
|
int RunApp();
|
|
|
|
|
|
#endif // OPTION1_H
|