diff options
| author | 2019-04-13 12:40:52 -0400 | |
|---|---|---|
| committer | 2019-04-13 12:40:52 -0400 | |
| commit | 55bfff7cf6541caac172b43186cf14405185b14d (patch) | |
| tree | c1ae99d2b39f8df8933d81ec2e61e81050bdb410 /frontends/calculator/CEdev/examples/os_input/src | |
| parent | 761462861fc1228e65546c4e0f877d5212320082 (diff) | |
| download | cetris-55bfff7cf6541caac172b43186cf14405185b14d.tar.gz cetris-55bfff7cf6541caac172b43186cf14405185b14d.tar.bz2 cetris-55bfff7cf6541caac172b43186cf14405185b14d.zip | |
fix curses on linux
Diffstat (limited to 'frontends/calculator/CEdev/examples/os_input/src')
| -rw-r--r-- | frontends/calculator/CEdev/examples/os_input/src/main.c | 72 |
1 files changed, 36 insertions, 36 deletions
diff --git a/frontends/calculator/CEdev/examples/os_input/src/main.c b/frontends/calculator/CEdev/examples/os_input/src/main.c index 7674897..a2fa7c0 100644 --- a/frontends/calculator/CEdev/examples/os_input/src/main.c +++ b/frontends/calculator/CEdev/examples/os_input/src/main.c @@ -1,36 +1,36 @@ -#include <stdbool.h> -#include <stddef.h> -#include <stdint.h> -#include <stdio.h> -#include <tice.h> - -/* Make sure to adjust those sizes according to your usage! */ -#define INPUT_SIZE 10 -#define RESP_SIZE 20 - -/* Draw text on the homescreen at the given X/Y location */ -void print(const char* text, uint8_t xpos, uint8_t ypos) { - os_SetCursorPos(ypos, xpos); - os_PutStrFull(text); -} - -void main(void) { - char inputBuffer[INPUT_SIZE]; - char response[RESP_SIZE]; - - /* Clear the homescreen */ - os_ClrHome(); - - /* Ask the user to type a string, which gets stored in `inputBuf` */ - os_GetStringInput("What is N? ", inputBuffer, INPUT_SIZE); - - /* Build the user response */ - sprintf(response, "N is %s.", inputBuffer); - - /* Clear the homescreen and display the built response */ - os_ClrHome(); - print(response, 0, 0); - - /* Wait for a key press before quitting */ - while (!os_GetCSC()); -} +#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <tice.h>
+
+/* Make sure to adjust those sizes according to your usage! */
+#define INPUT_SIZE 10
+#define RESP_SIZE 20
+
+/* Draw text on the homescreen at the given X/Y location */
+void print(const char* text, uint8_t xpos, uint8_t ypos) {
+ os_SetCursorPos(ypos, xpos);
+ os_PutStrFull(text);
+}
+
+void main(void) {
+ char inputBuffer[INPUT_SIZE];
+ char response[RESP_SIZE];
+
+ /* Clear the homescreen */
+ os_ClrHome();
+
+ /* Ask the user to type a string, which gets stored in `inputBuf` */
+ os_GetStringInput("What is N? ", inputBuffer, INPUT_SIZE);
+
+ /* Build the user response */
+ sprintf(response, "N is %s.", inputBuffer);
+
+ /* Clear the homescreen and display the built response */
+ os_ClrHome();
+ print(response, 0, 0);
+
+ /* Wait for a key press before quitting */
+ while (!os_GetCSC());
+}
|