More .h docs.

This commit is contained in:
2024-03-05 12:47:58 -05:00
parent e3071b372a
commit 3a392d4a9f
3 changed files with 106 additions and 0 deletions

View File

@ -5,6 +5,11 @@
** @{
*/
/**
** Log a message using printf-style formatting. Tries to use appropriate
** platform-specific functionality where necessary to make sure output goes
** somewhere that it can be seen.
*/
#if defined(__ANDROID__)
#include <android/log.h>
#define tf_printf(...) __android_log_print(ANDROID_LOG_INFO, "tildefriends", __VA_ARGS__)