We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test 6 for ft_memchr, from ./Libftest/tests/Part1_functions/ft_memchr:
ft_memchr
./Libftest/tests/Part1_functions/ft_memchr
Me recreating the same test with my ft_memchr function and the default memchr function:
memchr
My output:
Test output:
The expected output in test06.output:
test06.output
The text was updated successfully, but these errors were encountered:
I get the same output with the default memchr function and test06.output file
#include <string.h> #include <stdio.h> int main(void) { int tab[7] = {-49, 49, 1, -1, 0, -2, 2}; printf("%s", memchr(tab, -1, 7)); return 0; }
diff -y default_memchr test06.output ???1 ???1
Sorry, something went wrong.
No branches or pull requests
Test 6 for
ft_memchr
, from./Libftest/tests/Part1_functions/ft_memchr
:Me recreating the same test with my
ft_memchr
function and the defaultmemchr
function:My output:
Test output:
The expected output in
test06.output
:The text was updated successfully, but these errors were encountered: