Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/woip/c/wp.h
blob: 65e6f13f7e21dd0079529e0eabae2e93c43a07d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
#include "lsearcher.h"
#include "bzipreader.h"

#define START_HEADING 1
#define START_TEXT 2
#define END_TEXT 3

typedef struct {
  char *text;
  int block;
} wp_article;

typedef struct {
  FILE *fp;
  uint64_t *block_map;
  lindex index;
} wp_dump;