Convert 2 lines copyright before this new format starts creating the new in vogue style. Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
16 lines
310 B
C
16 lines
310 B
C
/*
|
|
* Copyright (c) 2020 Alexander Kozhinov Mail: <AlexanderKozhinov@yandex.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __HELPER__
|
|
#define __HELPER__
|
|
|
|
#include <logging/log.h>
|
|
|
|
#define STR_LOG_ALLOC(str) ((str == NULL) ? log_strdup("null") :\
|
|
log_strdup(str))
|
|
|
|
#endif /* __HELPER__ */
|