Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 105 of file preproc.c.
Referenced by generic_msg(), macro_add_arg(), macro_add_expansion(), pp_add_define(), pp_add_macro(), wpp_add_cmdline_define(), wpp_add_define(), and wpp_add_include_path().
{ char *s; int len; assert(str != NULL); len = strlen(str)+1; s = pp_xmalloc(len); if(!s) return NULL; return memcpy(s, str, len); }