| 10998 | #define nk_ttLONG(p) (* (nk_int *) (p)) |
| 10999 | #else |
| 11000 | static nk_ushort nk_ttUSHORT(const nk_byte *p) { return (nk_ushort)(p[0]*256 + p[1]); } |
| 11001 | static nk_short nk_ttSHORT(const nk_byte *p) { return (nk_short)(p[0]*256 + p[1]); } |
| 11002 | static nk_uint nk_ttULONG(const nk_byte *p) { return (nk_uint)((p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]); } |
| 11003 | #endif |
no outgoing calls
no test coverage detected