Changeset 3587 for libcaca/trunk/caca/string.c
- Timestamp:
- 07/27/09 01:26:15 (4 years ago)
- File:
-
- 1 edited
-
libcaca/trunk/caca/string.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/caca/string.c
r3586 r3587 69 69 * \return The cursor's X coordinate. 70 70 */ 71 int caca_ get_cursor_x(caca_canvas_t const *cv)71 int caca_wherex(caca_canvas_t const *cv) 72 72 { 73 73 return cv->frames[cv->frame].x; … … 83 83 * \return The cursor's Y coordinate. 84 84 */ 85 int caca_ get_cursor_y(caca_canvas_t const *cv)85 int caca_wherey(caca_canvas_t const *cv) 86 86 { 87 87 return cv->frames[cv->frame].y; … … 583 583 584 584 int cucul_gotoxy(cucul_canvas_t *, int, int) CACA_ALIAS(caca_gotoxy); 585 int cucul_get_cursor_x(cucul_canvas_t const *) CACA_ALIAS(caca_get_cursor_x); 586 int cucul_get_cursor_y(cucul_canvas_t const *) CACA_ALIAS(caca_get_cursor_y); 585 int cucul_get_cursor_x(cucul_canvas_t const *) CACA_ALIAS(caca_wherex); 586 int cucul_get_cursor_y(cucul_canvas_t const *) CACA_ALIAS(caca_wherey); 587 int caca_get_cursor_x(caca_canvas_t const *) CACA_ALIAS(caca_wherex); 588 int caca_get_cursor_y(caca_canvas_t const *) CACA_ALIAS(caca_wherey); 587 589 int cucul_put_char(cucul_canvas_t *, int, int, uint32_t) 588 590 CACA_ALIAS(caca_put_char);
Note: See TracChangeset
for help on using the changeset viewer.
