Displaying 2 results from an estimated 2 matches for "prevcursor".
Did you mean:
precursor
2007 Mar 15
1
my_isspace can be isblank
...32/modules/menumain.c#2
+++ com32/modules/menumain.c 07-03-15 16:26:57
@@ -30,6 +30,7 @@
#include <sha1.h>
#include <base64.h>
#include <colortbl.h>
+#include <ctype.h>
#ifdef __COM32__
#include <com32.h>
#endif
@@ -483,10 +484,10 @@
if ( cursor ) {
int prevcursor = cursor;
- while ( cursor && my_isspace(cmdline[cursor-1]) )
+ while ( cursor && isblank(cmdline[cursor-1]) )
cursor--;
- while ( cursor && !my_isspace(cmdline[cursor-1]) )
+ while ( cursor && !isblank(cmdline[cursor-1]) )
cursor--;
memmove(cmdline+curs...
2011 Feb 17
5
[PATCH 0/4] Reduce core size
From: Matt Fleming <matt.fleming at linux.intel.com>
These patches are based on the elflink branch.
This set of patches is my attempt at moving the command-line interface
functionality out of the core and into an ELF module to reduce the
size of the core.
The most interesting patch is [PATCH 4/4] which moves the cli code out
of core/elflink and into com32/elflink/modules. [PATCH 4/4] is