]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - test/demo_defkey.c
ncurses 6.0 - patch 20170408
[ncurses.git] / test / demo_defkey.c
index 045c2c7bd3e86d9e519437c7ee15a6506d704c0c..05914718ff79a7609d74f2480895c2c9f67711ac 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright (c) 2002-2012,2013 Free Software Foundation, Inc.              *
+ * Copyright (c) 2002-2016,2017 Free Software Foundation, Inc.              *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
@@ -26,7 +26,7 @@
  * authorization.                                                           *
  ****************************************************************************/
 /*
- * $Id: demo_defkey.c,v 1.22 2013/09/28 22:02:17 tom Exp $
+ * $Id: demo_defkey.c,v 1.26 2017/01/21 22:07:43 tom Exp $
  *
  * Demonstrate the define_key() function.
  * Thomas Dickey - 2002/11/23
@@ -78,15 +78,15 @@ visichar(int ch)
     ch = UChar(ch);
     assert(ch >= 0 && ch < 256);
     if (ch == '\\') {
-       strcpy(temp, "\\\\");
+       _nc_STRCPY(temp, "\\\\", sizeof(temp));
     } else if (ch == '\033') {
-       strcpy(temp, "\\E");
+       _nc_STRCPY(temp, "\\E", sizeof(temp));
     } else if (ch < ' ') {
-       sprintf(temp, "\\%03o", ch);
+       _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) "\\%03o", ch);
     } else if (ch >= 127) {
-       sprintf(temp, "\\%03o", ch);
+       _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) "\\%03o", ch);
     } else {
-       sprintf(temp, "%c", ch);
+       _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) "%c", ch);
     }
     return temp;
 }
@@ -106,11 +106,12 @@ visible(const char *string)
        for (pass = 0; pass < 2; ++pass) {
            for (n = 0; string[n] != '\0'; ++n) {
                char temp[80];
-               strncpy(temp, visichar(string[n]), sizeof(temp) - 2);
-               if (pass)
-                   strcat(result, temp);
-               else
+               _nc_STRNCPY(temp, visichar(string[n]), sizeof(temp) - 2);
+               if (pass) {
+                   _nc_STRCAT(result, temp, need);
+               } else {
                    need += strlen(temp);
+               }
            }
            if (!pass)
                result = typeCalloc(char, need);
@@ -131,7 +132,7 @@ really_define_key(WINDOW *win, const char *new_string, int code)
     char temp[80];
 
     if (code_name == 0) {
-       sprintf(temp, "Keycode %d", code);
+       _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) "Keycode %d", code);
        code_name = temp;
     }
 
@@ -192,7 +193,8 @@ duplicate(WINDOW *win, NCURSES_CONST char *name, int code)
            prefix = "\033[";
        }
        if (prefix != 0) {
-           sprintf(temp, "%s%s", prefix, value + 2);
+           _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp))
+                       "%s%s", prefix, value + 2);
            really_define_key(win, temp, code);
        }
     }
@@ -239,7 +241,7 @@ main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
      */
     for (n = 0; n < 12; ++n) {
        char name[10];
-       sprintf(name, "kf%d", n + 1);
+       _nc_SPRINTF(name, _nc_SLIMIT(sizeof(name)) "kf%d", n + 1);
        fkeys[n] = tigetstr(name);
     }
     for (n = 0; n < 12; ++n) {