Files
Upsilon/apps/shared/text_helpers.h
2019-06-17 15:38:53 -04:00

13 lines
227 B
C++

#ifndef SHARED_TEXT_HELPERS_H
#define SHARED_TEXT_HELPERS_H
namespace Shared {
namespace TextHelpers {
void PadWithSpaces(char * buffer, int bufferSize, int * currentNumberOfChar, int maxGlyphLengthWithPadding);
}
}
#endif