aboutsummaryrefslogtreecommitdiff
path: root/example-fs-bb48/crc32.h
diff options
context:
space:
mode:
authorNIIBE Yutaka <gniibe@fsij.org>2016-05-27 17:17:44 +0900
committerNIIBE Yutaka <gniibe@fsij.org>2016-05-27 17:17:44 +0900
commit960921f537adf6424c266664dcf1575c08ef0623 (patch)
tree799a2bbed8b436542e73035b1b2f2ee4908a1690 /example-fs-bb48/crc32.h
parentf2a8b01607aca8f41cc5f50b18bea74d65766731 (diff)
example-fs-bb48: SYS implementation
Diffstat (limited to 'example-fs-bb48/crc32.h')
-rw-r--r--example-fs-bb48/crc32.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/example-fs-bb48/crc32.h b/example-fs-bb48/crc32.h
index c31ba0f..3c58a26 100644
--- a/example-fs-bb48/crc32.h
+++ b/example-fs-bb48/crc32.h
@@ -1,5 +1,3 @@
-void crc32_init (void);
-void crc32_u8 (unsigned char);
-void crc32_u32 (unsigned int);
-
-unsigned int crc32_value (void);
+void crc32_init (unsigned int *);
+void crc32_u8 (unsigned int *, unsigned char);
+void crc32_u32 (unsigned int *, unsigned int);