blob: f975bc4ba819c54de3cfbe9a1825f13157c4401b [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#ifndef __AML_STRNCPY_H__
#define __AML_STRNCPY_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <stddef.h>
char *strncpy(char *dest, const char *src, size_t n);
#ifdef __cplusplus
}
#endif
#endif