1 /*
2  * Copyright (c) 2025 Croxel Inc.
3  * Copyright (c) 2025 CogniPilot Foundation
4  *
5  * SPDX-License-Identifier: Apache-2.0
6  */
7 
8 #include <platform/argus_print.h>
9 #include <api/argus_status.h>
10 #include <zephyr/kernel.h>
11 
print(const char * fmt_s,...)12 status_t print(const char *fmt_s, ...)
13 {
14 	va_list args;
15 
16 	va_start(args, fmt_s);
17 	vprintk(fmt_s, args);
18 	va_end(args);
19 
20 	return STATUS_OK;
21 }
22