1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00

render: -inline

This commit is contained in:
Gabor Adam Toth 2011-05-03 22:54:34 +02:00
parent 86f997eddd
commit e05081b074
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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;