12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*********************************************************
- * File name: pando_sys.h
- * Author: LIJIAN
- * Versions: 1.0
- * Description: declare common base function lib.
- * History:
- * Author: LIJIAN
- * Modification:
- *********************************************************/
- #ifndef _PANDO_SYS_H_
- #define _PANDO_SYS_H_
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include "string.h"
- #include "stdio.h"
- #include "usart.h"
- #define pd_malloc malloc //malloc
- #define pd_free free //free
- #define pd_memcpy memcpy
- #define pd_memcmp memcmp
- #define pd_memset memset
- #define pd_strlen strlen
- #define pd_strcpy strcpy
- #define pd_strncpy strncpy
- #define pd_strcmp strcmp
- #define pd_strncmp strncmp
- #define pd_strchr strchr
- #define pd_sprintf sprintf
- #define pd_printf PRINTF
- #endif /* _PANDO_SYS_H_ */
|