mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-27 15:10:53 +00:00
9e08da0fa6
- Update spp and force hidden visibility - Use R_API wisely - RSys.prefix returns const things - Use -install_name on Apple - Fix merged lib visibility linking on Linux - Use OSTYPE instead of BUILD_OS - Honor crosscompiler-objcopy and support android like linux - Add extra missing archives - Fix for android - Upgrade spp and sdb - Skip libr. from symstall - Add --enable-merged configure option - Use --enable-merged on ios-sdk - Upgrade sdb again for js0n - Kill sys/ios-shell.sh - Msvc dynamic build fix |
||
---|---|---|
.. | ||
p | ||
BUGS | ||
config.def.h | ||
LICENSE | ||
main.c | ||
Makefile | ||
r_api.c | ||
r_api.h | ||
README.md | ||
spp.c | ||
spp.h |
spp
Author: pancake <pancakenopcodeorg> License: MIT
Description
SPP stands for Simple Pre-Processor.
The primary use of spp is as a templating language, with similarities to PHP and CPP. Allowing to embed scripts in any language in some specific places of the document.
Configuration
SPP binary can be configured by changing the values in the config.h file, this way you can specify which preprocessors you want to include in the parser.
# Edit the config.h file before typing 'make'
See config.def.h as an example
Build
$ make
Installation
$ make install PREFIX=/usr
Embedding
There are no embedding issues with the MIT license and the amount if code is pretty low (~400 LOC), and use the apis:
struct Proc p = {0};
spp_proc_set (&p, "sh", 99);
char *res = spp_eval(&p, "hello {{echo orld}}"
printf ("(%s)\n", res);