XINU
Macros | Functions
fgets.c File Reference

デバイス(ファイル)から文字列を読み込む。 More...

Go to the source code of this file.

Macros

#define NULL   0
 NULLを示す値 More...
 

Functions

char * fgets (char *s, int n, int dev)
 デバイス(ファイル)から文字列を読み込む。 More...
 
int getc (int)
 デバイスから1Byte読み込むgetc()のextern宣言 More...
 

Detailed Description

デバイス(ファイル)から文字列を読み込む。

Definition in file fgets.c.

Macro Definition Documentation

◆ NULL

#define NULL   0

NULLを示す値

Definition at line 7 of file fgets.c.

Referenced by fgets().

Function Documentation

◆ fgets()

char* fgets ( char *  s,
int  n,
int  dev 
)

デバイス(ファイル)から文字列を読み込む。

以下のいずれかの場合に、文字列の読み込みを停止する
 ・最大読み込みByteに達した
 ・行の最後(改行コード)まで達した(Linux形式=LFか、Mac形式=CRのどちらか)
 ・EOFまで達した
文字列(改行コード含む)の最後にはNULL終端を付与する。

Parameters
[in,out]s読み込んだ文字列
[in]n最大読み込みByte
[in]devデバイスディスクリプタ
Returns
成功時は読み込んだ文字列(改行コードとNULL終端含む)、EOFや空文字の場合はNULLを返す。

Definition at line 25 of file fgets.c.

References getc(), and NULL.

26 {
27  int c = 0;
28  char *cs;
29 
30  cs = s;
31 
32  /* Read characters until maximum read length, */
33  /* end of line, or end of file */
34  while ((--n > 0) && ((c = getc(dev)) >= 0))
35  {
36  *cs++ = c;
37  if (('\n' == c) || ('\r' == c))
38  {
39  break;
40  }
41  }
42 
43  /* Check for EOF or empty string */
44  if ((c < 0) && (cs == s))
45  {
46  return NULL;
47  }
48 
49  /* Terminate string and return */
50  *cs++ = '\0';
51  return s;
52 }
#define NULL
NULLを示す値
Definition: fgets.c:7
int getc(int)
デバイスから1Byte読み込むgetc()のextern宣言
Definition: getc.c:9
Here is the call graph for this function:

◆ getc()

int getc ( int  )

デバイスから1Byte読み込むgetc()のextern宣言

Definition at line 9 of file getc.c.

Referenced by fgets().

12 {
13  intmask mask; /* Saved interrupt mask */
14  struct dentry *devptr; /* Entry in device switch table */
15  int32 retval; /* Value to return to caller */
16 
17  mask = disable();
18  if (isbaddev(descrp)) {
19  restore(mask);
20  return SYSERR;
21  }
22  devptr = (struct dentry *) &devtab[descrp];
23  retval = (*devptr->dvgetc) (devptr);
24  restore(mask);
25  return retval;
26 }
void restore(intmask)
#define SYSERR
処理が失敗した場合
Definition: kernel.h:79
Definition: conf.h:6
struct dentry devtab[]
Definition: conf.c:11
devcall(* dvgetc)(struct dentry *)
Definition: conf.h:16
uint32 intmask
保存された割り込みマスク
Definition: kernel.h:38
int int32
符号あり32ビット整数(int)
Definition: kernel.h:11
#define isbaddev(f)
デバイスIDを検証するマクロ。
Definition: device.h:15
intmask disable(void)
割り込み禁止(intr.Sに定義がある)
Here is the caller graph for this function: