Initial commit

This commit is contained in:
github-classroom[bot] 2025-02-06 06:48:42 +00:00 committed by GitHub
commit feef6058d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
55 changed files with 5878 additions and 0 deletions

17
trim_str.c Normal file
View file

@ -0,0 +1,17 @@
/*----------------------------------------------------------
* HTBLA-Leonding
* ---------------------------------------------------------
* Title: Trim String
* Author: */<your name>;/*
* ----------------------------------------------------------
* Description:
* Application entry point for 'trim'.
* ----------------------------------------------------------
*/
#include <stdio.h>
#include "trim.h"
int main(int argc, char* argv[]) {
return 0;
}