Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* main.c :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: squiana <[email protected]> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2019/07/14 19:50:13 by squiana #+# #+# */
- /* Updated: 2019/07/14 21:17:29 by ckumera ### ########.fr */
- /* */
- /* ************************************************************************** */
- #include <unistd.h>
- int test_symbol(int n, char **tab);
- int sudoky(int place, char **tab);
- void display(char **tab);
- int main(int argc, char **argv)
- {
- if (test_symbol(argc, argv))
- {
- if (sudoky(9, argv))
- display(argv);
- else
- write(1, "Error\n", 6);
- }
- else
- write(1, "Error\n", 6);
- return (0);
- }
Advertisement
Add Comment
Please, Sign In to add comment