blob: 06e733c4c24cf57a1fe42edc511138d59c201ee0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <stdio.h>
#include <string.h>
static void print_banner(const char* text);
extern "C" {
void app_main(void)
{
print_banner("Running tests without [ignore] tag");
}
}
static void print_banner(const char* text)
{
printf("\n#### %s #####\n\n", text);
}
|