Is there a simple way to extract the inside of the assert functions from C files?
For example -
assert(cred->keytab == NULL);/*assert(1==1);*/
The output should be -
cred->keytab == NULL
I'm looking for something like xgettext just for the assert functions.