MAC Clean-up [Issue-ID: ODUHIGH-212]
[o-du/l2.git] / src / codec_utils / common / odu_common_codec.h
index 9fefea4..f75bf58 100644 (file)
 #ifndef __ODU_COMMON_CODEC_H__
 #define __ODU_COMMON_CODEC_H__
 
-#include "envopt.h"        /* Environment options */
-#include "envdep.h"        /* Environment dependent */
-#include "envind.h"        /* Environment independent */
-
-#include "gen.h"           /* General */
-#include "gen.x"           /* General */
-#include "ssi.h"
-#include "OCTET_STRING.h"
-#include "BIT_STRING.h"
-#include "asn_codecs.h"
-
 #define ENC_BUF_MAX_LEN 400
 #define ENCODE_FAIL -1
 
-typedef struct PlmnIdentity 
-{
-   uint8_t mcc[3];
-   uint8_t mnc[3];
-}Plmn;
+char encBuf[ENC_BUF_MAX_LEN];
+int  encBufSize;
 
 int PrepFinalEncBuf(const void *buffer, size_t size, void *encodedBuf);
 S16 buildPlmnId(Plmn plmn, OCTET_STRING_t *octe);
 S16 fillBitString(BIT_STRING_t *id, U8 unusedBits, U8 byteSize, U8 val);
-
-char encBuf[ENC_BUF_MAX_LEN];
-int  encBufSize;
+S16 bitStringToInt(BIT_STRING_t *bitString, U16 *val);
 
 #endif