Expando Node for Text. More...
Go to the source code of this file.
Functions | |
struct ExpandoNode * | node_text_new (const char *start, const char *end) |
Create a new Text ExpandoNode. | |
struct ExpandoNode * | node_text_parse (const char *str, const char *end, const char **parsed_until) |
Extract a block of text. | |
Expando Node for Text.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file node_text.h.
struct ExpandoNode * node_text_new | ( | const char * | start, |
const char * | end | ||
) |
Create a new Text ExpandoNode.
start | Start of text to store |
end | End of text to store |
ptr | New Text ExpandoNode |
Definition at line 57 of file node_text.c.
struct ExpandoNode * node_text_parse | ( | const char * | str, |
const char * | end, | ||
const char ** | parsed_until | ||
) |
Extract a block of text.
str | String to parse |
end | End of string |
parsed_until | First character after parsed text |
ptr | New Text ExpandoNode |
Definition at line 102 of file node_text.c.