mbedtls_debug.c 326 B

123456789101112131415
  1. #include "mbedtls_debug.h"
  2. #include "mbedtls/debug.h"
  3. #ifdef PRINTF_STDLIB
  4. #include <stdio.h>
  5. #endif
  6. #ifdef PRINTF_CUSTOM
  7. #include "tinystdio.h"
  8. #endif
  9. void MBEDTLS_Debug(void *ctx, int level, const char *file, int line, const char *str)
  10. {
  11. ((void) level);
  12. printf("%s:%04d: %s\r", file, line, str );
  13. }