mirror of
https://github.com/thead-yocto-mirror/prd-utils
synced 2026-06-21 17:02:29 +02:00
13 lines
303 B
C
13 lines
303 B
C
/*
|
|
* Copyright (C) 2023 Alibaba Group Holding Limited
|
|
*/
|
|
|
|
#ifndef UBOOT_ENV_PARAMS_H
|
|
#define UBOOT_ENV_PARAMS_H
|
|
|
|
int light_uboot_get_env(const char *key, char **value);
|
|
int light_uboot_set_env(const char *key, char *value);
|
|
int light_uboot_clean_env(const char *key);
|
|
|
|
#endif /* UBOOT_ENV_PARAMS_H */
|