~ubuntu-branches/ubuntu/hardy/steam/hardy

« back to all changes in this revision

Viewing changes to sources/wiki/transforms.h

  • Committer: Bazaar Package Importer
  • Author(s): Alain Schroeder
  • Date: 2006-11-21 16:03:12 UTC
  • mfrom: (2.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061121160312-nf96y6nihzsyd2uv
Tags: 2.2.31-3
Add patch to prevent inconsistent data after shutdown.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
#include "boolean.h"
12
12
 
 
13
void math(char* formula);
13
14
void barelink(char *link);
14
15
void blank_line(void);
15
16
void bold(void);
22
23
void make_list(char *list);
23
24
void paragraph(char *text);
24
25
void plaintext(char *text);
 
26
void head(char *text);
25
27
void preformat(void);
26
28
void wikilink(char *link);
 
29
void tag(char *tagstr);
27
30
 
28
31
void linkInternal(char *link);
29
32
void annotationInternal(char *ann);
30
33
 
 
34
typedef enum { blank, para, list, pre, done } status_t;
 
35
 
 
36
 
 
37
/* Define a lexer object, available or functions in this file */
 
38
typedef struct {
 
39
    status_t status;
 
40
} lexer_t;
 
41
 
 
42
typedef enum { start, end, next } list_t;
 
43
 
 
44
void prepare_status(status_t new);
 
45
 
31
46
#endif