Move the sources to trunk
[opencv] / apps / Hawk / CVEiCL / EiC / src / ppc403 / read.c
1 /* read.c -- read bytes from a input device.\r
2  * \r
3  * Copyright (c) 1995 Cygnus Support\r
4  *\r
5  * The authors hereby grant permission to use, copy, modify, distribute,\r
6  * and license this software and its documentation for any purpose, provided\r
7  * that existing copyright notices are retained in all copies and that this\r
8  * notice is included verbatim in any distributions. No written agreement,\r
9  * license, or royalty fee is required for any of the authorized uses.\r
10  * Modifications to this software may be copyrighted by their authors\r
11  * and need not follow the licensing terms described here, provided that\r
12  * the new terms are clearly indicated on the first page of each file where\r
13  * they apply.\r
14  */\r
15 #include "glue.h"\r
16 \r
17 extern char _DEFUN_VOID (inbyte);\r
18 \r
19 /*\r
20  * read  -- read bytes from the serial port. Ignore fd, since\r
21  *          we only have stdin.\r
22  */\r
23 int\r
24 _DEFUN (read, (fd, buf, nbytes),\r
25        int fd _AND\r
26        char *buf _AND\r
27        int nbytes)\r
28 {\r
29   int i = 0;\r
30 \r
31   #ifdef debuglg\r
32   prs("[read]\n");\r
33   inbyte();\r
34   #endif\r
35   for (i = 0; i < nbytes; i++) {\r
36     *(buf + i) = inbyte();\r
37     if ((*(buf + i) == '\n') || (*(buf + i) == '\r')) {\r
38       (*(buf + i + 1)) = 0;\r
39       break;\r
40     }\r
41   }\r
42   return (i);\r
43 }\r