mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
Merge branch 'master' of supraverse.net:libpsyc
This commit is contained in:
commit
51c95d0858
2 changed files with 2 additions and 2 deletions
|
@ -34,7 +34,7 @@ psycRenderRC psyc_render(psycPacket *packet, char *buffer, size_t buflen);
|
|||
/**
|
||||
* Render a PSYC list into a buffer.
|
||||
*/
|
||||
inline psycRenderRC psyc_renderList(psycList *list, char *buffer, size_t buflen);
|
||||
psycRenderRC psyc_renderList(psycList *list, char *buffer, size_t buflen);
|
||||
|
||||
#endif // PSYC_RENDER_H
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#include "psyc/render.h"
|
||||
#include "psyc/syntax.h"
|
||||
|
||||
inline psycRenderRC psyc_renderList(psycList *list, char *buffer, size_t buflen)
|
||||
psycRenderRC psyc_renderList(psycList *list, char *buffer, size_t buflen)
|
||||
{
|
||||
size_t i, cur = 0;
|
||||
psycString *elem;
|
||||
|
|
Loading…
Reference in a new issue