Initial commit

This commit is contained in:
Aodhan Collins
2026-02-22 12:51:32 +00:00
commit 0267543622
21 changed files with 2888 additions and 0 deletions

17
azeron-cli/utils.c Normal file
View File

@@ -0,0 +1,17 @@
/*
* 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 */
}