ext/kcar/c_util.h in kcar-0.6.0 vs ext/kcar/c_util.h in kcar-0.7.0
- old
+ new
@@ -1,8 +1,8 @@
/*
* Generic C functions and macros go here, there are no dependencies
- * on Unicorn internal structures or the Ruby C API in here.
+ * on kcar internal structures or the Ruby C API in here.
*/
#ifndef UH_util_h
#define UH_util_h
@@ -47,10 +47,10 @@
if (xdigit >= 'A' && xdigit <= 'F')
return xdigit - 'A' + 10;
if (xdigit >= 'a' && xdigit <= 'f')
return xdigit - 'a' + 10;
- /* Ragel already does runtime range checking for us in Unicorn: */
+ /* Ragel already does runtime range checking for us */
assert(xdigit >= '0' && xdigit <= '9' && "invalid digit character");
return xdigit - '0';
}