Exemplo n.º 1
0
int F2C_getc( FILE * f)
{
	int i;
	if ( f == stdin )
	{
		csetmode(C_ECHO, stdin); 
		i = __getc( f );
		csetmode(C_RAW, stdin);
	}
	else
		i = __getc( f );

	return  i;
}
Exemplo n.º 2
0
int_t _EWL_CDECL __FileRead(void *File, int_t ch, int_t Action)
{
	switch(Action) {
		case __GetAChar:
			MISRA_EXCEPTION_RULE_14_7()
			return __getc((struct _FILE *)File);

		case __UngetAChar:
			if (ch != (int_t)EOF) {
				MISRA_EXCEPTION_RULE_14_7()
				return __ungetc(ch, (FILE *)File);
			}
			MISRA_EXCEPTION_RULE_14_7()
			return 0;

		case __TestForError:
			{
			int_t res = (ferror((struct _FILE *)File) || feof((struct _FILE *)File));
			MISRA_EXCEPTION_RULE_14_7()
			return res;
			}

		default:
			MISRA_EXCEPTION_RULE_14_7()
			return 0;
	}
Exemplo n.º 3
0
static char* __gets(char* s, int max_size)
{
    int i;
    for (i = 0; (s[i] = __getc()) != '\n' && i < max_size - 1; ++i) {}
    s[i] = 0;
    return s;
}
Exemplo n.º 4
0
/****************************************************************************
REMARKS:
Read a single character from the input file buffer, including translation
of the character in text transation modes.
****************************************************************************/
static int __getc(
	FILE *f)
{
	int	c;

	if (f->unputc != EOF) {
		c = f->unputc;
		f->unputc = EOF;
		}
	else {
		if (f->startp == f->curp) {
			int bytes = fread(f->buf,1,sizeof(f->buf),f);
			if (bytes == 0)
				return EOF;
			f->curp = f->startp + bytes;
			}
		c = *f->startp++;
		if (f->text && c == '\r') {
			int nc = __getc(f);
			if (nc != '\n')
				f->unputc = nc;
			}
		}
	return c;
}
Exemplo n.º 5
0
/* uart_getc() -- blocking 8N1 receive */
uint8_t uart_getc(void)
{
	while (1) {
		int ch;
		while (rx_pin() != STARTBIT) { /* NOP */ }

		ch = __getc();
		if (ch >= 0)
			return (uint8_t) ch;
	}
}
Exemplo n.º 6
0
//
// read  -- read bytes from the serial port. Ignore fd, since
//          we only have stdin.
static int
sys_read(int fd, char *buf, int nbytes)
{
    int i = 0;

    for (i = 0; i < nbytes; i++) {
        *(buf + i) = __getc();
        if ((*(buf + i) == '\n') || (*(buf + i) == '\r')) {
            (*(buf + i + 1)) = 0;
            break;
        }
    }
    return (i);
}
Exemplo n.º 7
0
Arquivo: fgets.c Projeto: 1tgr/mobius
char *
fgets(char *s, int n, FILE *f)
{
  int c=0;
  char *cs;

  cs = s;
  while (--n>0 && (c = __getc(f)) != EOF)
  {
    *cs++ = c;
    if (c == '\n')
      break;
  }
  if (c == EOF && cs == s)
    return NULL;
  *cs++ = '\0';
  return s;
}
Exemplo n.º 8
0
// === CODE ===
int _vcscanf_int(int (*__getc)(void *), void (*__rewind)(void*), void *h, int base, int maxlen, long long *outval)
{
	char	ich;
	 int	sgn = 1;
	long long int	ret = 0;
	 int	n_read = 0;

	// Initialise output to something sane
	*outval = 0;

	// First character
	// - maxlen == 0 means no limit
	ich = __getc(h);
	n_read ++;
	
	// Sign?
	if( ich == '-' || ich == '+' ) {
		sgn = (ich == '-' ? -1 : 1);
		if( n_read == maxlen )
			return n_read;
		ich = __getc(h);
		n_read ++;
	}
	
	// Determine base
	if( base == 0 ) {
		if( ich != '0' ) {
			base = 10;
		}
		else {
			if( n_read == maxlen )
				return n_read;
			ich = __getc(h);
			n_read ++;
			if( ich != 'x' ) {
				base = 8;
			}
			else {
				base = 16;
				if( n_read == maxlen )
					return n_read;
				ich = __getc(h);
				n_read ++;
			}
		}
	}
	
	if( ich == 0 ) {
		// Oops?
		return n_read;
	}
	
	while( ich )
	{
		 int	next = -1;
		
		// Get the digit value
		if( base <= 10 ) {
			if( '0' <= ich && ich <= '0'+base-1 )
				next = ich - '0';
		}
		else {
			if( '0' <= ich && ich <= '9' )
				next = ich - '0';
			if( 'A' <= ich && ich <= 'A'+base-10-1 )
				next = ich - 'A' + 10;
			if( 'a' <= ich && ich <= 'a'+base-10-1 )
				next = ich - 'a' + 10;
		}
		// if it's not a digit, rewind and break
		if( next < 0 ) {
			__rewind(h);
			n_read --;
			break;
		}
		
		// Add to the result
		ret *= base;
		ret += next;
		//_SysDebug("- %i/%i read, 0x%x val", n_read, maxlen, ret);

		// Check if we've reached the limit
		if( n_read == maxlen )
			break ;

		// Next character
		ich = __getc(h);
		n_read ++;
	}
	
	// Apply sign
	if( sgn == -1 )
		ret = -ret;

	*outval = ret;
	return n_read;
}
Exemplo n.º 9
0
int _vcscanf(int (*__getc)(void*), void (*__rewind)(void*), void *h, const char *format, va_list ap)
{
	char	fch, ich;
	 int	ret = 0, nch = 0;
	
	while( (fch = *format++) )
	{
		union {
			void	*_void;
			char	*_char;
			short	*_short;
			 int	*_int;
			long	*_long;
			long long	*_longlong;
		}	ptr;
		long long	ival;
		//long double	rval;
		 int	maxlen = 0;
		// int	offset = -1;
		enum e_vcscanf_sizes	size = _VCSCANF_UNDEF;
		enum e_vcscanf_types	valtype;
		 int	fail = 0;
		 int	nnewch;

		const char	*set_start;
		 int	set_len;		

		// Whitespace matches any ammount of whitespace (including none)
		if( isspace(fch) )
		{
			while( (ich = __getc(h)) && isspace(ich) )
				nch ++;
			if(ich)	__rewind(h);
			continue ;
		}
		
		// Any non-whitespace and non-% characters must match exactly
		if( fch != '%' )
		{
			if( __getc(h) != fch )
				break;
			nch ++;
			continue ;
		}
		
		// Format specifier
		fch = *format++;
		if(!fch)	break;

		// Catch '%%' early
		if( fch == '%' ) {
			if( __getc(h) != '%' )
				break;
			nch ++;
			continue ;
		}		

		// %n$ - Direct offset selection, shouldn't be mixed with just %
		#if 0
		for( ; isdigit(fch); fch = *format++ )
			maxlen = maxlen * 10 + (fch - '0');
		if( fch == '$' ) {
			offset = maxlen;
			maxlen = 0;
		}
		#endif
		
		// Supress assignemnt?
		if( fch == '*' )
		{
			fch = *format++;
			ptr._void = NULL;
			ret --;
		}
		else
			ptr._void = va_arg(ap, void*);
		
		// Max field length
		while( isdigit(fch) )
		{
			maxlen = maxlen * 10 + fch - '0';
			fch = *format++;
		}
		
		// Length modifier
		switch( fch )
		{
		case 'h':
			// 'short'
			size = _VCSCANF_SHORT;
			fch = *format++;
			if( fch == 'h' ) {
				// 'char'
				size = _VCSCANF_CHAR;
				fch = *format++;
			}
			break;
		case 'l':
			// 'long'
			size = _VCSCANF_LONG;
			fch = *format++;
			if( fch == 'l' ) {
				// 'long long'
				size = _VCSCANF_LONGLONG;
				fch = *format++;
			}
			break;
		case 'j':
			// '(u)intmax_t'
			size = _VCSCANF_INTMAX;
			fch = *format++;
			break;
		case 'z':
			// 'size_t'
			size = _VCSCANF_SIZET;
			fch = *format++;
			break;
		case 't':
			// 'ptrdiff_t'
			size = _VCSCANF_PTRDIFF;
			fch = *format++;
			break;
		case 'L':
			// 'long double' (a, A, e, E, f, F, g, G)
			size = _VCSCANF_LONGDOUBLE;
			fch = *format++;
			break;
		}
		
		// Format specifiers
		switch( fch )
		{
		// Decimal integer
		case 'd':
			nnewch = _vcscanf_int(__getc, __rewind, h, 10, maxlen, &ival);
			if(nnewch==0)	fail=1;
			nch += nnewch;
			valtype = _VCSCANF_INT;
			break;
		// variable-base integer
		case 'i':
			nnewch = _vcscanf_int(__getc, __rewind, h, 0, maxlen, &ival);
			if(nnewch==0)	fail=1;
			nch += nnewch;
			valtype = _VCSCANF_INT;
			break;
		// Octal integer
		case 'o':
			nnewch = _vcscanf_int(__getc, __rewind, h, 8, maxlen, &ival);
			if(nnewch==0)	fail=1;
			nch += nnewch;
			valtype = _VCSCANF_INT;
			break;
		// Hexadecimal integer
		case 'x': case 'X':
			nnewch = _vcscanf_int(__getc, __rewind, h, 16, maxlen, &ival);
			if(nnewch==0)	fail=1;
			nch += nnewch;
			valtype = _VCSCANF_INT;
			break;
		// strtod format float
		case 'a': case 'A':
		case 'e': case 'E':
		case 'f': case 'F':
		case 'g': case 'G':
			valtype = _VCSCANF_REAL;
			break;
 		// `maxlen` or 1 characters
		case 'c':
			if( maxlen == 0 )
				maxlen = 1;
			while( maxlen -- && (ich = __getc(h)) )
			{
				if(ptr._char)	*ptr._char++ = ich;
				nch ++;
			}
			valtype = _VCSCANF_NOTYPE;
			break;
		// sequence of non-whitespace characters
		case 's':
			if( maxlen == 0 )
				maxlen = -1;

			ich = 0;
			while( maxlen -- && (ich = __getc(h)) && !isspace(ich) )
			{
				if(ptr._char)	*ptr._char++ = ich;
				nch ++;
			}
			if( maxlen >= 0 && ich )
				__rewind(h);
			if(ptr._char)	*ptr._char++ = 0;
			valtype = _VCSCANF_NOTYPE;
			break;
		// match a set of characters
		case '[': {
			int invert = 0;
			if( *format++ == '^' ) {
				// Invert
				invert = 1;
			}
			set_start = format;
			set_len = 0;
			// if the first character is ']' it's part of the set
			do {
				// permissable character
				set_len ++;
				fch = *format++;
			} while( fch && fch != ']' );

			if( maxlen == 0 )
				maxlen = -1;
			ich = 0;
			while( maxlen -- && (ich = __getc(h)) && invert == !memchr(set_start, set_len, ich) )
			{
				if(ptr._char)	*ptr._char++ = ich;
				nch ++;
			}
			if( maxlen >= 0 && ich )
				__rewind(h);
			if(ptr._char)	*ptr._char++ = 0;
			valtype = _VCSCANF_NOTYPE;
			break;
			}
		case 'p': // read back printf("%p")
			valtype = _VCSCANF_NOTYPE;
			break;
		case 'n': // number of read characters to this point
			if(ptr._int) {
				*ptr._int = nch;
				ret --;	// negates the ret ++ at the end
			}
			valtype = _VCSCANF_NOTYPE;
			break;
		default:
			// Implimentation defined
			valtype = _VCSCANF_NOTYPE;
			break;
		}

		if(fail)
			break;		

		switch(valtype)
		{
		case _VCSCANF_NOTYPE:
			// Used when assignment is done above
			break;
		case _VCSCANF_INT:
			switch(size)
			{
			case _VCSCANF_UNDEF:	*ptr._int = ival;	break;
			case _VCSCANF_CHAR:	*ptr._char = ival;	break;
			case _VCSCANF_SHORT:	*ptr._short = ival;	break;
			case _VCSCANF_LONG:	*ptr._long = ival;	break;
			case _VCSCANF_LONGLONG:	*ptr._longlong = ival;	break;
			default:	// ???
				break;
			}
			break;
		case _VCSCANF_REAL:
			break;
		}
		
		ret ++;
	}
	
	return ret;
}
Exemplo n.º 10
0
/* Read a character from stdin.  */
int
DEFUN_VOID(getchar)
{
  return __getc(stdin);
}