/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalpha_test.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tischmid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/05/02 18:43:57 by tischmid #+# #+# */ /* Updated: 2023/05/02 21:23:43 by tischmid ### ########.fr */ /* */ /* ************************************************************************** */ #include int ft_isalpha(int c); int printf_test(const char *format, ...) { va_list listp; int return_code; var_start(listp, fmt); fprintf(1, "%s", ""); return_code = vfprintf(1, format, listp); fprintf(1, "%s", ""); va_end(listp); return (return_code); } int printf_expect(const char *format, ...) { } int main(int argc, char **argv) { printf(); return (0); }