18 lines
262 B
C
18 lines
262 B
C
/**
|
|
* @file app.c
|
|
* @author zhangzheng (1358745329@qq.com)
|
|
* @brief
|
|
* @version 0.1
|
|
* @date 2023-09-29
|
|
*
|
|
* @copyright Copyright (c) 2023
|
|
*
|
|
*/
|
|
#include "types.h"
|
|
#include "app.h"
|
|
|
|
app_info_t *app_info_get(void *addr)
|
|
{
|
|
return (app_info_t *)addr;
|
|
}
|