marrub
/
Lithia
Archived
1
0
Fork 0
This repository has been archived on 2023-06-17. You can view files and clone it, but cannot push or open issues/pull-requests.
Lithia/source/Main/m_cps.c

21 lines
390 B
C

// Copyright © 2018 Graham Sanderson, all rights reserved.
#include "lith_common.h"
#include "lith_cps.h"
// Extern Functions ----------------------------------------------------------|
//
// Lith_CPS_Print
//
__str Lith_CPS_Print(u32 *cps)
{
ACS_BeginPrint();
for(int i = 0, ch; (ch = Lith_CPS_GetC(cps, i)); i++)
ACS_PrintChar(ch);
return ACS_EndStrParam();
}
// EOF