You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All tests for lstmap are passed without error handling for the parameters void *(*f)(void *) and void (*del)(void *).
error handling like: if (f = NULL || del == NULL){ return (NULL);}
The text was updated successfully, but these errors were encountered:
Francinette generally seems to lack tests for error handling NULL parameters. With libc functions it'll actually fail you if you have error handling (NO CRASH).
All tests for lstmap are passed without error handling for the parameters void *(*f)(void *) and void (*del)(void *).
error handling like: if (f = NULL || del == NULL){ return (NULL);}
The text was updated successfully, but these errors were encountered: