Skip to content

Commit

Permalink
Create demo.c
Browse files Browse the repository at this point in the history
  • Loading branch information
tan-feng authored Oct 6, 2020
1 parent 7f979e0 commit 2fb910c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions demo.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#include "ez_debug.h"

int func(int x)
{
ez_trace();
x++;
ez_debug("x=%d", x);
return x++;
}

int main()
{
int y = func(1);
ez_debug("y=%d", y);

}

0 comments on commit 2fb910c

Please sign in to comment.