code:struct clist - ikarishinjieva/unixV6-code-analyze-chs GitHub Wiki
- I/Oĺ珌çźĺéĺ éĺ头
7900 /*
7901 * A clist structure is the head
7902 * of a linked list queue of characters.
7903 * The characters are stored in 4-word
7904 * blocks containing a link and 6 characters.
7905 * The routines getc and putc (m45.s or m40.s)
7906 * manipulate these structures.
7907 */
7908 struct clist
7909 {
7910 int c_cc; /* character count */
7911 int c_cf; /* pointer to first block */
- éĺ ĺ珌ć°
7912 int c_cl; /* pointer to last block */
- éĺ 头ćé
7913 };
- éĺ ĺ°žćé
7914 /* ------------------------- */