14 строки
289 B
C
14 строки
289 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>
|
|
|
|
|
|
/* GCC string operations. */
|
|
size_t strnlen (const char *s, size_t maxLen);
|
|
|
|
#endif /* PLATFORM_COMPILER_H_ */
|