You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
270 B
17 lines
270 B
//#include <iostream>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "../src/valog.h"
|
|
|
|
|
|
int main()
|
|
{
|
|
// C usage
|
|
ORCA_LOG_ERR();
|
|
ORCA_LOG_ERR("HELLO");
|
|
char *str = strdup("fds");
|
|
ORCA_LOG_ERR("string: %s", str);
|
|
|
|
free(str);
|
|
}
|
|
|