This commit is contained in:
Timo Schmidt 2023-05-03 22:03:49 +02:00
parent c9c036bf84
commit 6d68483c2d
1 changed files with 0 additions and 2 deletions

View File

@ -54,8 +54,6 @@ exit -- "${exit_status}"
int ft_isdigit(int c);
int main(){
test( "Test output", printf, "\n");
expect("Expected output", printf, "\n");
test( "'0'", printf, "%d\n", ft_isdigit('0'));
expect("'0'", printf, "%d\n", isdigit('0'));
test( "'1'", printf, "%d\n", ft_isdigit('1'));