Namespace functions.

This commit is contained in:
2022-05-28 12:01:55 +01:00
parent d529a9631c
commit 660682bbd2
10 changed files with 107 additions and 107 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 aaruf_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;
@@ -169,7 +169,7 @@ int32_t cst_transform(const uint8_t* interleaved, uint8_t* sequential, size_t le
return AARUF_STATUS_OK;
}
int32_t cst_untransform(const uint8_t* sequential, uint8_t* interleaved, size_t length)
int32_t aaruf_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;