20 lines
393 B
C
20 lines
393 B
C
/*
|
|
* Azeron CLI - Command implementations
|
|
* Copyright (C) 2024 Azeron Linux Project
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "azeron.h"
|
|
|
|
/* Command implementations will go here as they are developed */
|
|
/* For now, this file contains placeholder functions */
|
|
|
|
void commands_init(void)
|
|
{
|
|
/* Initialize command system */
|
|
}
|