Skip to content

Instantly share code, notes, and snippets.

@russell-shizhen
russell-shizhen / dbg.h
Created August 28, 2020 02:11 — forked from dweinstein/dbg.h
debug macros for C/C++ and maybe JNI android development
#ifndef __dbg_h__
#define __dbg_h__
#include <stdio.h>
#include <errno.h>
#include <string.h>
// Debug tag
#define DTAG "DBG"