Subversion Repositories HelenOS-historic

Rev

Rev 183 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. #include <print.h>
  3. #include <test.h>
  4.  
  5. void test(void)
  6. {
  7.     printf("char %c \n",'c');
  8.     __u64 u64const = 0x0123456789ABCDEFLL;
  9. //    printf(" p  %P  %p \n",0x1234567898765432);
  10.     printf(" Printf test \n");
  11.     printf(" Q  %Q  %q %Q \n",u64const, u64const);
  12.     printf(" L  %L  %l \n",0x12345678 ,0x12345678);  
  13.     printf(" W  %W  %w \n",0x1234 ,0x1234);  
  14.     printf(" B  %B  %B \n",0x12 ,0x12);  
  15.    
  16.     return;
  17. }
  18.  
  19.