signs.h
changeset 2436 7d5df545bd5d
parent 2186 db48cf29b983
child 2498 3ed05caa4449
equal deleted inserted replaced
2435:9b9d43988058 2436:7d5df545bd5d
    20 extern MemoryPool _sign_pool;
    20 extern MemoryPool _sign_pool;
    21 
    21 
    22 /**
    22 /**
    23  * Check if a Sign really exists.
    23  * Check if a Sign really exists.
    24  */
    24  */
    25 static inline bool IsValidSign(SignStruct* ss)
    25 static inline bool IsValidSign(const SignStruct* ss)
    26 {
    26 {
    27 	return ss->str != 0;
    27 	return ss->str != 0;
    28 }
    28 }
    29 
    29 
    30 /**
    30 /**