aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-2/lib/lib.c
blob: 9fe020ba25aa7ee998f7e0edbc0460df66b8c688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! [0]

// lib/lib.cpp
#include "lib.h"

#ifndef CRUCIAL_DEFINE
#   error CRUCIAL_DEFINE not defined
#endif

const char *get_string()
{
    return "Hello from library";
}

//! [0]