Makefile: remove -g flag
[cnoor.git] / quran.h
blob54a49d7b4172b0f006554fe135719b931611b346
1 #ifndef _QURAN_H
2 #define _QURAN_H
4 #define NSURA 114
6 struct quran {
7 char *text;
8 char **ayas;
9 };
11 struct quran *quran_alloc(char *path);
12 void quran_aya(struct quran *quran, char *buf, size_t len, int aya);
13 void quran_free(struct quran *quran);
15 int sura_start(int sura);
16 int sura_ayas(int sura);
17 int aya_num(int sura, int aya);
19 #endif