xref: /plan9/sys/src/9/port/nandecc.h (revision 06f6463ac3d8361c0bb2456bffe6544dd9e2e0a0)
1 typedef enum NandEccError {
2 	NandEccErrorBad,
3 	NandEccErrorGood,
4 	NandEccErrorOneBit,
5 	NandEccErrorOneBitInEcc,
6 } NandEccError;
7 
8 ulong nandecc(uchar buf[256]);
9 NandEccError nandecccorrect(uchar buf[256], ulong calcecc, ulong *storedecc,
10 	int reportbad);
11 
12