Moved EncodingProfileId into ASL core and decoupled the encoder header from STORE, so ASL/1-CORE stands alone as required.

This commit is contained in:
Carl Niklas Rydberg 2025-12-21 22:12:09 +01:00
parent dd429ed6f1
commit 71d2303c3c
3 changed files with 2 additions and 3 deletions

View file

@ -16,6 +16,7 @@ typedef struct {
} amduat_octets_t;
typedef uint16_t amduat_hash_id_t;
typedef uint16_t amduat_asl_encoding_profile_id_t;
typedef struct {
uint32_t tag_id;

View file

@ -11,8 +11,6 @@
extern "C" {
#endif
typedef uint16_t amduat_asl_encoding_profile_id_t;
typedef struct {
amduat_asl_encoding_profile_id_t encoding_profile_id;
amduat_hash_id_t hash_id;

View file

@ -1,7 +1,7 @@
#ifndef AMDUAT_ENC_ASL1_CORE_H
#define AMDUAT_ENC_ASL1_CORE_H
#include "amduat/asl/store.h"
#include "amduat/asl/core.h"
#include <stdbool.h>
#include <stddef.h>