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

31
test_trim.h Normal file
View file

@ -0,0 +1,31 @@
/*----------------------------------------------------------
* HTBLA-Leonding
* ---------------------------------------------------------
* Title: Trim string_cpy
* Author: S. Schraml
* ----------------------------------------------------------
* Description:
* Test functions for 'trim'.
* ----------------------------------------------------------
*/
#ifndef ___TEST_trim_H
#define ___TEST_trim_H
#include "shortcut.h"
TEST(empty_null_string);
TEST(empty_null_string_cpy);
TEST(empty_string);
TEST(empty_string_cpy);
TEST(just_string);
TEST(just_string_cpy);
TEST(leading_space);
TEST(leading_space_cpy);
TEST(trailing_space);
TEST(trailing_space_cpy);
TEST(leading_and_trailing_space);
TEST(leading_and_trailing_space_cpy);
TEST(just_space);
TEST(just_space_cpy);
#endif