mirror of
https://github.com/DavidGailleton/42-LibUnit.git
synced 2026-03-14 11:56:53 +01:00
21 lines
990 B
C
21 lines
990 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* main.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: elagouch <elagouch@student.42lyon.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2026/01/24 18:53:18 by elagouch #+# #+# */
|
|
/* Updated: 2026/01/24 18:53:18 by elagouch ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "tests.h"
|
|
|
|
int main(void)
|
|
{
|
|
strlen_launcher();
|
|
atoi_launcher();
|
|
strncmp_launcher();
|
|
}
|