osd-contiki/cpu/stm32w108/e_stdio/src/test-scanf.c
Adam Dunkels a5046e83c7 Cleanup and refactoring of the STM32w port
This is a general cleanup of things like code style issues and code structure of the STM32w port to make it more like the rest of Contiki is structured.
2013-03-18 13:31:26 +01:00

15 lines
124 B
C

int main() {
float flottant ;
// char c;
scanf("%f" , &flottant);
// scanf("%c",&c);
//while(1);
return 0;
}