File: gtab-db.h

package info (click to toggle)
gcin 2.8.8%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 22,672 kB
  • sloc: cpp: 33,774; ansic: 9,313; makefile: 652; sh: 558
file content (54 lines) | stat: -rw-r--r-- 713 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
dbhead
stext block
gnode/stext blocks
*/

typedef struct {
  int N;
  int extend_link; // The soring order is only valid within the block. If extend_link > 0, binary search one by one
  // notes follows
} BLOCK_HEAD;


// nodes

/*
  ac texta
  acb textb
  acb textc -> dup gnode
  
  a
  aab
  aac
  b
  bbc
  
*/


typedef struct {
  int link; // text/chidren link
  int key;  // key==0->text link
} GNODE;

typedef struct {
  int time;
  usecount_t usecount;
  short len;     // byte len
  char flags;
  // text follows
} Stext;

enum {
 STEXT_FLAG_TRASH=1,
};

typedef union {
  struct {
    int flags;
    // int text_start_ofs;  sizeof(DBHEAD)
    int gnode_root_ofs;
  } h;
  char dummy[128];
} DBHEAD;