File: statetable.h

package info (click to toggle)
bls-standalone 0.20151231
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, stretch
  • size: 280 kB
  • sloc: ansic: 1,913; python: 236; makefile: 63
file content (14 lines) | stat: -rw-r--r-- 160 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef STATETABLE_H
#define STATETABLE_H


struct statetable {
	int count;
	struct statematrix {
		int next[256];
		bool exclusive;
	} transits[];
};


#endif