crypt_argchk.c 559 B

123456789101112131415161718192021
  1. /* LibTomCrypt, modular cryptographic library -- Tom St Denis
  2. *
  3. * LibTomCrypt is a library that provides various cryptographic
  4. * algorithms in a highly modular and flexible manner.
  5. *
  6. * The library is free for all purposes without any express
  7. * guarantee it works.
  8. *
  9. * Tom St Denis, [email protected], http://libtomcrypt.org
  10. */
  11. #include "mycrypt.h"
  12. #include <signal.h>
  13. #if (ARGTYPE == 0)
  14. void crypt_argchk(char *v, char *s, int d)
  15. {
  16. fprintf(stderr, "_ARGCHK '%s' failure on line %d of file %s\n",
  17. v, d, s);
  18. (void)raise(SIGABRT);
  19. }
  20. #endif