Definition at line 17 of file misc.cpp.
00017 { 00018 size_t length = regerror(errcode,compiled,NULL,0); 00019 char *buffer = (char*)malloc(length + 1); 00020 (void) regerror(errcode,compiled,buffer,length); 00021 return buffer; 00022 }