cho2txt

Extract lyrics from chordpro files
git clone git://git.relim.de/cho2txt.git
Log | Files | Refs | README | LICENSE

commit af811df5124e70dd54d242c7d0d18fc627c55298
parent 9fd4330a3cb959e03a6332aeac7d18e682dffc24
Author: nibo <kroekerrobin@gmail.com>
Date:   Fri,  7 Jul 2023 19:29:54 +0200

Remove unnecessary enums

Diffstat:
Mcho2txt.c | 1-
Mcho2txt.h | 14--------------
2 files changed, 0 insertions(+), 15 deletions(-)

diff --git a/cho2txt.c b/cho2txt.c @@ -125,7 +125,6 @@ char *extractLyrics(int fd, enum print printTitle) bool isDirectiveInLine = false; bool isCurlyBrace = false; char *directive = NULL; - enum grid g = GRID_NO; while (1) { if (read(fd, &buf, 1) == 1) diff --git a/cho2txt.h b/cho2txt.h @@ -5,20 +5,6 @@ enum print PRINT_TITLE_DIRECTIVE }; -enum grid -{ - GRID_NO, - GRID_START, - GRID_END -}; - -enum tab -{ - TAB_NO, - TAB_START, - TAB_END -}; - enum direc { DIREC_TITLE,