18 lines
299 B
C
18 lines
299 B
C
/*
|
|
* Azeron CLI - Utility functions
|
|
* Copyright (C) 2024 Azeron Linux Project
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
/* CLI utility functions will be implemented here */
|
|
|
|
void cli_utils_init(void)
|
|
{
|
|
/* Initialize CLI utilities */
|
|
}
|