mirror of
https://github.com/espressif/openthread.git
synced 2026-08-03 17:37:46 +00:00
[style] fix include directives (#5485)
This commit fixes some public include directives that uses #include "xxx.h". It should be #include <xxx.h> for public headers.
This commit is contained in:
@@ -32,7 +32,7 @@
|
||||
*/
|
||||
|
||||
#include "openthread-core-config.h"
|
||||
#include "openthread/channel_manager.h"
|
||||
#include <openthread/channel_manager.h>
|
||||
|
||||
#include "common/instance.hpp"
|
||||
#include "common/locator-getters.hpp"
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
*/
|
||||
|
||||
#include "openthread-core-config.h"
|
||||
#include "openthread/channel_monitor.h"
|
||||
#include <openthread/channel_monitor.h>
|
||||
|
||||
#include "common/instance.hpp"
|
||||
#include "common/locator-getters.hpp"
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
*/
|
||||
|
||||
#include "openthread-core-config.h"
|
||||
#include "openthread/child_supervision.h"
|
||||
#include <openthread/child_supervision.h>
|
||||
|
||||
#include "common/instance.hpp"
|
||||
#include "common/locator-getters.hpp"
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
* This file implements the OpenThread entropy source management API.
|
||||
*/
|
||||
|
||||
#include "openthread/entropy.h"
|
||||
#include <openthread/entropy.h>
|
||||
|
||||
#include "common/random_manager.hpp"
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
|
||||
#if OPENTHREAD_CONFIG_TIME_SYNC_ENABLE
|
||||
|
||||
#include "openthread/network_time.h"
|
||||
#include <openthread/network_time.h>
|
||||
|
||||
#include "common/instance.hpp"
|
||||
#include "common/locator-getters.hpp"
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
* This file implements the OpenThread cryptographic random number generator API.
|
||||
*/
|
||||
|
||||
#include "openthread/random_crypto.h"
|
||||
#include <openthread/random_crypto.h>
|
||||
|
||||
#include <mbedtls/ctr_drbg.h>
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
* This file implements the OpenThread software random number generator API.
|
||||
*/
|
||||
|
||||
#include "openthread/random_noncrypto.h"
|
||||
#include <openthread/random_noncrypto.h>
|
||||
|
||||
#include "common/random.hpp"
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
|
||||
#include "console_cli.h"
|
||||
|
||||
#include "openthread/config.h"
|
||||
#include <openthread/config.h>
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
|
||||
Reference in New Issue
Block a user