mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
13 lines
227 B
C++
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
|