move common util fcts to /common to avoid common files (e.g. crc) to depend on non-common files

This commit is contained in:
Philippe Teuwen
2019-04-16 23:02:40 +02:00
parent 8b99df9074
commit 4eaa2fc5aa
19 changed files with 155 additions and 209 deletions

View File

@@ -13,7 +13,6 @@
#include "cose.h"
#include <cbor.h>
#include "cbortools.h"
#include "util.h"
static const char COSEEmptyStr[] = "";

View File

@@ -16,6 +16,8 @@
#include <stddef.h>
#include <stdint.h>
#include <cbor.h>
#include "commonutil.h"
#include "util.h"
const char *GetCOSEAlgName(int id);
const char *GetCOSEAlgDescription(int id);