Files
Datastructs/Exam/IKT203Exam/Portfolio/Assignment-01/option1.h
2025-11-20 15:24:00 +01:00

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