1
zero-epwing/util.h

79 lines
1.6 KiB
C
Raw Normal View History

2016-11-01 02:32:40 +00:00
/*
* Copyright (C) 2016 Alex Yatskov <alex@foosoft.net>
* Author: Alex Yatskov <alex@foosoft.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UTIL_H
#define UTIL_H
#include <stdlib.h>
2016-11-03 03:06:40 +00:00
#include <stdio.h>
2016-11-02 05:11:29 +00:00
#include "eb/eb/eb.h"
2016-11-01 02:32:40 +00:00
2016-11-01 03:40:52 +00:00
/*
Dictionary structures
*/
2016-11-02 05:34:53 +00:00
#define MAX_ERROR 256
2016-11-01 05:24:20 +00:00
typedef struct {
char* heading;
char* text;
} TextBlock;
2016-11-01 03:40:52 +00:00
typedef struct {
char* heading;
char* text;
} Entry;
typedef struct {
char* title;
2016-11-01 05:24:20 +00:00
char* copyright;
2016-11-01 03:40:52 +00:00
Entry* entries;
int entry_count;
2016-11-02 16:06:58 +00:00
int entry_cap;
2016-11-02 05:11:29 +00:00
2016-11-02 05:34:53 +00:00
char error[MAX_ERROR];
2016-11-01 03:40:52 +00:00
} Subbook;
typedef struct {
2016-11-02 05:34:53 +00:00
char character_code[32];
char disc_code[32];
2016-11-01 03:40:52 +00:00
Subbook* subbooks;
int subbook_count;
2016-11-02 05:34:53 +00:00
char error[MAX_ERROR];
2016-11-01 03:40:52 +00:00
} Book;
2016-11-02 16:14:14 +00:00
/*
Book helpers
*/
typedef enum {
READ_MODE_TEXT,
READ_MODE_HEADING,
} ReadMode;
char* read_book_data(EB_Book* book, const EB_Position* position, ReadMode mode);
2016-11-03 03:06:40 +00:00
void free_book(Book* book);
void dump_book(Book* book, FILE* fp);
2016-11-02 16:14:14 +00:00
2016-11-01 02:32:40 +00:00
#endif