Fix pointer formatting.

This commit is contained in:
2019-08-03 01:58:19 +01:00
parent 16a9524d31
commit 7f8496af38
12 changed files with 203 additions and 203 deletions

View File

@@ -35,7 +35,7 @@
#include <stdint.h>
#include <string.h>
int32_t cst_transform(const uint8_t *interleaved, uint8_t *sequential, size_t length)
int32_t cst_transform(const uint8_t* interleaved, uint8_t* sequential, size_t length)
{
uint8_t *p, *q, *r, *s, *t, *u, *v, *w;
size_t qStart;
@@ -168,7 +168,7 @@ int32_t cst_transform(const uint8_t *interleaved, uint8_t *sequential, size_t le
return DICF_STATUS_OK;
}
int32_t cst_untransform(const uint8_t *sequential, uint8_t *interleaved, size_t length)
int32_t cst_untransform(const uint8_t* sequential, uint8_t* interleaved, size_t length)
{
uint8_t *p, *q, *r, *s, *t, *u, *v, *w;
size_t qStart;