Did I understand your problem ?
You have some short functions that you want to define ( not only declare) in a header.
Just define them inline.

Code:
#ifndef HEADER_INCLUDED
#define HEADER_INCLUDED

int one_liner();

inline int one_liner() { return 0;)

#endif
Kurt