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

//! [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]