ch1-01.c 307 B

123456789101112131415161718
  1. /*
  2. * Name : ch1-01.c
  3. * Purpose : Demonstration of a basic libtomcrypt program
  4. * Author : Tom St Denis
  5. *
  6. * History : v0.79 Initial release
  7. */
  8. /* ch1-01-1 */
  9. /* Include the default headers and libtomcrypt headers */
  10. #include <mycrypt.h>
  11. int main(void)
  12. {
  13. return 0;
  14. }
  15. /* ch1-01-1 */