#ifndef SOME_CONSTANT #define SOME_CONSTANT // declarations #endif
#ifndef DANS_STRING_UTILS #define DANS_STRING_UTILS #endif
void Sort(string array[], size_t size); size_t Find(string array[], size_t size, string key);
#ifndef DANS_STRING_UTILS #define DANS_STRING_UTILS #include <string> void Sort(const std::string array[], size_t size); size_t Find(const std::string array[], size_t size, std::string key); #endif
#incldue "StringUtils.h"
g++ -c StringUtils.cpp g++ -o main main.cpp StringUtils.o