Hi heedaf, > In the following sample code does anyone know what tS8 (tS8 retCode > = 0;) do/mean? It is contained in a .h file. > tS8 retCode = 0; This declares a variable called retCode using a type called tS8 and initializes it to zero. The tS8 type is probably declared somewhere like this: typedef signed cahr tS8; -- Dave Hylands Vancouver, BC, Canada http://www.DaveHylands.com/
Message
Re: [lpc2000] C-code question
2006-03-25 by Dave Hylands