aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-3/lib/lib.h
blob: 772e1d82b0825fa803f6cf9e241013dbe63eca2d (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef LIB_H
#define LIB_H

//! [0]
// lib/lib.h
#include "lib_global.h"

MYLIB_EXPORT const char *get_string();
//! [0]

#endif // LIB_H