https://github.com/dimitri4788/texteditorinc
A simple text editor in C.
https://github.com/dimitri4788/texteditorinc
c text-editor
Last synced: 9 months ago
JSON representation
A simple text editor in C.
- Host: GitHub
- URL: https://github.com/dimitri4788/texteditorinc
- Owner: dimitri4788
- License: mit
- Created: 2015-04-18T22:44:55.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-11-13T06:02:07.000Z (over 10 years ago)
- Last Synced: 2024-11-17T03:13:08.156Z (over 1 year ago)
- Topics: c, text-editor
- Language: C
- Size: 156 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Text editor
===========
A simple text editor in C.
To compile
----------
```sh
$ make
```
To run
------
```sh
$ ./textEditor
```
Once the program is running, it accepts following user inputs
-------------------------------------------------------------
- p: Print the contents of the file.
- a 3 I like cats!: Append "I like cats!" to the text at line number 3.
- w: Write the changes back to the file (overwrites the file if it exists).
- q: Quit
Author
------
Deep Aggarwal
deep.uiuc@gmail.com
Date Started: 03/09/2015