mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-23 11:35:19 +01:00
21 lines
309 B
C++
21 lines
309 B
C++
#include <Platform.h>
|
|
#include "../cpp_foundation/XBuffer.h"
|
|
|
|
int XBuffer_tests()
|
|
{
|
|
|
|
#ifdef JIEF_DEBUG
|
|
// printf("XBuffer_tests -> Enter\n");
|
|
#endif
|
|
|
|
XBuffer<UINT8> xb_uint8;
|
|
|
|
void* p = (void*)1;
|
|
char* p2 = (char*)2;
|
|
xb_uint8.cat(p);
|
|
xb_uint8.cat(p2);
|
|
xb_uint8.cat(uintptr_t(0));
|
|
|
|
return 0;
|
|
}
|