17 lines
310 B
C
17 lines
310 B
C
// Modified by: Zhiyi Zhang in 2024.08
|
|
|
|
#ifndef __COMMON_H__
|
|
#define __COMMON_H__
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
#include <inttypes.h>
|
|
#include "debug.h"
|
|
|
|
#define ARRLEN(arr) ((int)(sizeof(arr) / sizeof(arr[0])))
|
|
|
|
#endif |