• when will lib call _sys_exit(int returncode)?
    hello , everybody I want to know when will lib call _sys_exit(int return_code)? and how about the parameter return_code? I hope this function can help me to find some problem in my program...
  • _sys_exit return codes
    Where can I get a list of return codes for _sys_exit? My app is hanging here and the call stack is not much use. _sys_exit is being called with 0x80. Thanks, Ben
  • complement of Int
    is there any function that will complement the variable. e.g int i = 0xAA complement of i = 0x55
  • Int to ASCII
    I have a uint32_t variable. I want to print its ASCII equivalent value. can anyone help me here.
  • Enums and Ints
    Bug, or just weird subtlety of ANSI C when it comes to enums and ints? typedef enum { es16_1, es16_2, es16_3, es16_Force16 = 0x7fff } EnumS16; typedef enum { eu16_1, eu16_2, eu16_3, eu16_Force16...