aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-2/lib/lib.h
blob: efc56ae0b687e18601f23668bc8427d20bf2816a (plain)
1
2
3
4
5
6
7
8
9
10
11
//! [0]

// lib/lib.h
#ifndef LIB_H
#define LIB_H

const char *get_string();

#endif // LIB_H

//! [0]