CommonFun.h 241 Bytes
Newer Older
时昊's avatar
时昊 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

#ifndef _CommonFun_H_
#define _CommonFun_H_

#include "stdint.h"

typedef enum
{
    EX_OK = 0u,
    EX_ERR,
} _Fun_Res;



void my_memcpy(void *dest, void *src, unsigned count );
void my_memset(void *dest, int set, unsigned len);



#endif