mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
14 lines
324 B
C++
14 lines
324 B
C++
#ifndef __UTILITY_H__
|
|
#define __UTILITY_H__
|
|
|
|
#include <apps/external/archive.h>
|
|
|
|
namespace Reader
|
|
{
|
|
|
|
bool stringEndsWith(const char* str, const char* end);
|
|
int filesWithExtension(const char* extension, External::Archive::File* files, int filesSize);
|
|
void stringNCopy(char* dest, int max, const char* src, int len);
|
|
|
|
}
|
|
#endif |