Files
dropbear/examples/ch1-02.c
Matt Johnston c9bcca21e4 Branch renaming
--HG--
branch : libtomcrypt-orig
extra : convert_revision : 1626dca9b669f35fc7b143ba5133a7ea90a191d3
2004-05-31 18:25:41 +00:00

26 lines
388 B
C

/*
* Name : ch1-02.c
* Purpose : Demonstration of error handling
* Author : Tom St Denis
*
* History : v0.79 Initial release
*/
/* ch1-01-1 */
#include <mycrypt.h>
int main(void)
{
int errno;
if ((errno = some_func(...)) != CRYPT_OK) {
printf("Error: %s\n", error_to_string(errno));
return EXIT_FAILURE;
}
return 0;
}
/*ch1-01-1 */