15 строки
320 B
C
15 строки
320 B
C
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT license.
|
|
|
|
#ifndef PLATFORM_COMPILER_H_
|
|
#define PLATFORM_COMPILER_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
/* Keil string operations. */
|
|
char* strdup (const char *s);
|
|
size_t strnlen (const char *s, size_t maxLen);
|
|
|
|
#endif /* PLATFORM_COMPILER_H_ */
|