On 7/10/06, K.R.Sathya Prakash <[EMAIL PROTECTED]> wrote: > > Can anybody please help me to know something about the > assert() function. I think it takes an integer > argument. I saw its profuse use in mac-802_11.cc > Please relpy asap > KRSP >
Hi, assert() function take a boolean as the argument. It returns TRUE if this value is TRUE, it ends the program and returns FALSE if this value is FALSE. assert() is usually used for debugging purpose. I think we can turn off this function in a "released version" but I don't know how :-( Regards, -- Hai-Nam NGUYEN Elève 3A SLR, ENST Bretagne 2 rue de la Châtaigneraie 35576 Cesson Sévigné Site web: http://www.jcisio.com
