mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-23 18:04:07 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6242 d0543943-73ff-0310-b7d9-9358b9ac24b2
22 lines
413 B
C
22 lines
413 B
C
/*
|
|
File: exprmem.h
|
|
Auth: Brian Allen Vanderburg II
|
|
Date: Wednesday, April 30, 2003
|
|
Desc: Memory functions for ExprEval
|
|
|
|
This file is part of ExprEval.
|
|
*/
|
|
|
|
#ifndef __BAVII_EXPRMEM_H
|
|
#define __BAVII_EXPRMEM_H
|
|
|
|
/* Needed for exprNode */
|
|
#include "exprpriv.h"
|
|
|
|
void* exprAllocMem(size_t size);
|
|
void exprFreeMem(void *data);
|
|
exprNode *exprAllocNodes(size_t count);
|
|
|
|
|
|
#endif /* __BAVII_EXPRMEM_H */
|