Correction: function names must be ft_*
This commit is contained in:
parent
81f932f0be
commit
6b7a5d0ffb
12 changed files with 27 additions and 23 deletions
13
ft_isalnum_test.c
Normal file
13
ft_isalnum_test.c
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#include "libft.h"
|
||||
#include<stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
int c;
|
||||
|
||||
for (c = 0; c < 256; c++)
|
||||
{
|
||||
printf("'%c' (%i); isalnum(c): %i\r\n", c, c, ft_isalnum(c));
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue