Lines Matching defs:pcInbuf
442 SLPError SLPEscape(const char *pcInbuf, char **ppcOutBuf, SLPBoolean isTag) {
445 if (!pcInbuf || !ppcOutBuf)
448 if (!(buf = malloc(strlen(pcInbuf) * 3 + 1))) {
454 for (pin = (char *)pcInbuf, pout = buf; *pin; ) {
484 SLPError SLPUnescape(const char *pcInbuf, char **ppcOutBuf, SLPBoolean isTag) {
485 if (!pcInbuf || !ppcOutBuf)
488 return (slp_unescape(pcInbuf, ppcOutBuf, isTag, '\\'));
495 static SLPError slp_unescape(const char *pcInbuf, char **ppcOutBuf,
499 if (!(buf = malloc(strlen(pcInbuf) * 3 + 1))) {
506 for (pin = (char *)pcInbuf, pout = buf; *pin; ) {