summaryrefslogtreecommitdiff
path: root/payloads/libpayload/curses/PDCurses-3.4/sdl1
diff options
context:
space:
mode:
Diffstat (limited to 'payloads/libpayload/curses/PDCurses-3.4/sdl1')
-rw-r--r--payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcclip.c14
-rw-r--r--payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcdisp.c10
-rw-r--r--payloads/libpayload/curses/PDCurses-3.4/sdl1/pdckbd.c4
-rw-r--r--payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcsetsc.c6
-rw-r--r--payloads/libpayload/curses/PDCurses-3.4/sdl1/sdltest.c4
5 files changed, 19 insertions, 19 deletions
diff --git a/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcclip.c b/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcclip.c
index 203c975d24..30cb06c980 100644
--- a/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcclip.c
+++ b/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcclip.c
@@ -17,14 +17,14 @@ RCSID("$Id: pdcclip.c,v 1.6 2008/07/14 04:24:52 wmcbrine Exp $")
int PDC_clearclipboard(void);
Description:
- PDC_getclipboard() gets the textual contents of the system's
- clipboard. This function returns the contents of the clipboard
- in the contents argument. It is the responsibilitiy of the
+ PDC_getclipboard() gets the textual contents of the system's
+ clipboard. This function returns the contents of the clipboard
+ in the contents argument. It is the responsibilitiy of the
caller to free the memory returned, via PDC_freeclipboard().
- The length of the clipboard contents is returned in the length
+ The length of the clipboard contents is returned in the length
argument.
- PDC_setclipboard copies the supplied text into the system's
+ PDC_setclipboard copies the supplied text into the system's
clipboard, emptying the clipboard prior to the copy.
PDC_clearclipboard() clears the internal clipboard.
@@ -32,7 +32,7 @@ RCSID("$Id: pdcclip.c,v 1.6 2008/07/14 04:24:52 wmcbrine Exp $")
Return Values:
indicator of success/failure of call.
PDC_CLIP_SUCCESS the call was successful
- PDC_CLIP_MEMORY_ERROR unable to allocate sufficient memory for
+ PDC_CLIP_MEMORY_ERROR unable to allocate sufficient memory for
the clipboard contents
PDC_CLIP_EMPTY the clipboard contains no text
PDC_CLIP_ACCESS_ERROR no clipboard support
@@ -118,7 +118,7 @@ int PDC_clearclipboard(void)
{
PDC_LOG(("PDC_clearclipboard() - called\n"));
- if (pdc_SDL_clipboard)
+ if (pdc_SDL_clipboard)
{
free(pdc_SDL_clipboard);
pdc_SDL_clipboard = NULL;
diff --git a/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcdisp.c b/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcdisp.c
index 3712e6622e..fe463352d6 100644
--- a/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcdisp.c
+++ b/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcdisp.c
@@ -62,7 +62,7 @@ void PDC_update_rects(void)
{
if (rectcount)
{
- /* if the maximum number of rects has been reached, we're
+ /* if the maximum number of rects has been reached, we're
probably better off doing a full screen update */
if (rectcount == MAXRECT)
@@ -102,7 +102,7 @@ static void _set_attr(chtype ch)
if (newfg != foregr)
{
- SDL_SetPalette(pdc_font, SDL_LOGPAL,
+ SDL_SetPalette(pdc_font, SDL_LOGPAL,
pdc_color + newfg, pdc_flastc, 1);
foregr = newfg;
}
@@ -151,8 +151,8 @@ void PDC_gotoyx(int row, int col)
if (!SP->visibility)
return;
- /* draw a new cursor by overprinting the existing character in
- reverse, either the full cell (when visibility == 2) or the
+ /* draw a new cursor by overprinting the existing character in
+ reverse, either the full cell (when visibility == 2) or the
lowest quarter of it (when visibility == 1) */
ch = curscr->_y[row][col] ^ A_REVERSE;
@@ -270,7 +270,7 @@ void PDC_transform_line(int lineno, int x, int len, const chtype *srcp)
else
if (lastrect.y != dest.y)
uprect[rectcount++] = dest;
- }
+ }
else
uprect[rectcount++] = dest;
diff --git a/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdckbd.c b/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdckbd.c
index 56bf1e470d..f82acd95a0 100644
--- a/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdckbd.c
+++ b/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdckbd.c
@@ -12,7 +12,7 @@ RCSID("$Id: pdckbd.c,v 1.20 2008/07/14 04:24:52 wmcbrine Exp $")
unsigned long PDC_get_input_fd(void);
Description:
- PDC_get_input_fd() returns the file descriptor that PDCurses
+ PDC_get_input_fd() returns the file descriptor that PDCurses
reads its input from. It can be used for select().
Portability X/Open BSD SYS V
@@ -111,7 +111,7 @@ bool PDC_check_key(void)
Uint32 current = SDL_GetTicks();
int haveevent = SDL_PollEvent(&event);
- /* if we have an event, or 30 ms have passed without a screen
+ /* if we have an event, or 30 ms have passed without a screen
update, or the timer has wrapped, update now */
if (haveevent ||
diff --git a/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcsetsc.c b/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcsetsc.c
index 0df97ab744..6794354fd3 100644
--- a/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcsetsc.c
+++ b/payloads/libpayload/curses/PDCurses-3.4/sdl1/pdcsetsc.c
@@ -16,9 +16,9 @@ RCSID("$Id: pdcsetsc.c,v 1.7 2008/07/14 04:24:52 wmcbrine Exp $")
PDC_set_blink() toggles whether the A_BLINK attribute sets an
actual blink mode (TRUE), or sets the background color to high
intensity (FALSE). The default is platform-dependent (FALSE in
- most cases). It returns OK if it could set the state to match
- the given parameter, ERR otherwise. Current platforms also
- adjust the value of COLORS according to this function -- 16 for
+ most cases). It returns OK if it could set the state to match
+ the given parameter, ERR otherwise. Current platforms also
+ adjust the value of COLORS according to this function -- 16 for
FALSE, and 8 for TRUE.
PDC_set_title() sets the title of the window in which the curses
diff --git a/payloads/libpayload/curses/PDCurses-3.4/sdl1/sdltest.c b/payloads/libpayload/curses/PDCurses-3.4/sdl1/sdltest.c
index d39533b303..840d15a4eb 100644
--- a/payloads/libpayload/curses/PDCurses-3.4/sdl1/sdltest.c
+++ b/payloads/libpayload/curses/PDCurses-3.4/sdl1/sdltest.c
@@ -10,7 +10,7 @@
#include <stdlib.h>
#include <time.h>
-/* You could #include pdcsdl.h, or just add the relevant declarations
+/* You could #include pdcsdl.h, or just add the relevant declarations
here: */
PDCEX SDL_Surface *pdc_screen;
@@ -54,7 +54,7 @@ int main(int argc, char **argv)
dest.w = i;
dest.h = j;
- SDL_FillRect(pdc_screen, &dest,
+ SDL_FillRect(pdc_screen, &dest,
SDL_MapRGB(pdc_screen->format, rand() % 256,
rand() % 256, rand() % 256));
}