MCPcopy Create free account
hub / github.com/Kitware/CMake / wmove

Function wmove

Utilities/cmpdcurses/pdcurses/move.c:66–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64}
65
66int wmove(WINDOW *win, int y, int x)
67{
68 PDC_LOG(("wmove() - called: y=%d x=%d\n", y, x));
69
70 if (!win || x < 0 || y < 0 || x >= win->_maxx || y >= win->_maxy)
71 return ERR;
72
73 win->_curx = x;
74 win->_cury = y;
75
76 return OK;
77}

Callers 15

resize_termFunction · 0.85
mvwinchFunction · 0.85
mvwin_wchFunction · 0.85
mvwscanwFunction · 0.85
_drawoneFunction · 0.85
PDC_slk_initializeFunction · 0.85
mvwaddchFunction · 0.85
mvwaddrawchFunction · 0.85
mvwadd_wchFunction · 0.85
mvwaddstrFunction · 0.85
mvwaddnstrFunction · 0.85
mvwaddwstrFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…