13 lines
176 B
C
13 lines
176 B
C
#include "libft.h"
|
|
#include<stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
int c;
|
|
|
|
for (c = 0; c < 256; c++)
|
|
{
|
|
printf("'%c' (%i); isalpha(c): %i\r\n", c, c, ft_isalpha(c));
|
|
}
|
|
return (0);
|
|
}
|