I am looking through code from one of our clients and found this function parameter that I had never seen before:
some_function('ESFc');
In the debugger, I set the value
char c = 'ESFc';
and it is equal to 99
It also uses βESSc,β βESCm,β and βESBd,β which are 99, 109, and 100
What is it? Is this some kind of exit code?
source share