#include "runtime-config.h" #include char *config_get_url() { /* TODO: find a better way to do this */ return getenv("NOTIFY_URL"); } int should_enable_debug() { return getenv("NEST_SANITY_DEBUG")!=NULL?1:0; }