HomeSort by: relevance | last modified time | path
    Searched defs:CHAR (Results 1 - 12 of 12) sorted by relevancy

  /src/tests/usr.bin/xlint/lint1/
msg_004.c 22 char enum {
23 CHAR
52 char double short char_double_short;
  /src/bin/ed/
cbc.c 73 static char *rcsid = "@(#)cbc.c,v 1.2 1994/02/01 00:34:36 alm Exp";
114 #define READ(buf, n, fp) fread(buf, sizeof(char), n, fp)
115 #define WRITE(buf, n, fp) fwrite(buf, sizeof(char), n, fp)
120 typedef char Desbuf[8];
121 #define CHAR(x,i) (x[i])
133 static char bits[] = { /* used to extract bits from a char */
138 static char des_buf[8]; /* shared buffer for get_des_char/put_des_char */
145 static void des_error(const char *);
147 static void expand_des_key(char *, char *)
    [all...]
  /src/bin/ps/
ps.h 45 CHAR, UCHAR, SHORT, USHORT, INT, UINT, LONG, ULONG,
62 char *prefix;
68 const char *name; /* name(s) of variable */
69 const char *header; /* header, possibly changed from default */
88 const char *fmt; /* printf format */
  /src/usr.bin/ul/
ul.c 40 static char sccsid[] = "@(#)ul.c 8.1 (Berkeley) 6/6/93";
70 struct CHAR {
71 char c_mode;
72 char c_char;
82 static void flushln(struct CHAR *, size_t);
83 static void fwd(struct CHAR *, size_t);
84 static void iattr(struct CHAR *);
85 static void initbuf(struct CHAR *, size_t);
88 static void overstrike(struct CHAR *);
89 static void reverse(struct CHAR *, size_t)
    [all...]
  /src/usr.bin/tip/
tip.h 62 extern char *DV; /* UNIX device(s) to open */
63 extern char *EL; /* chars marking an EOL */
64 extern char *CM; /* initial connection message */
65 extern char *IE; /* EOT to expect on input */
66 extern char *OE; /* EOT to send to complete FT */
67 extern char *CU; /* call unit if making a phone call */
68 extern char *AT; /* acu type */
69 extern char *PN; /* phone number(s) */
70 extern char *DI; /* disconnect string */
71 extern char *PA; /* parity to be generated *
    [all...]
  /src/usr.bin/bdes/
bdes.c 47 static char sccsid[] = "@(#)bdes.c 8.1 (Berkeley) 6/6/93";
108 char bits1[64]; /* bits of key */ \
114 char bits1[64]; /* bits of message */ \
125 #define READ(buf, n) fread(buf, sizeof(char), n, stdin)
127 if (fwrite(buf, sizeof(char), n, stdout) != (size_t)n) \
133 typedef char Desbuf[8];
134 #define CHAR(x,i) (x[i])
154 static const char bits[] = { /* used to extract bits from a char */
162 static int setbits(char *, int)
    [all...]
  /src/bin/ksh/
tree.h 10 #define NOWORD ((char *)NULL)
11 #define NOWORDS ((char **)NULL)
22 char **args; /* arguments to a command */
23 char **vars; /* variable assignments */
26 char *str; /* word for case; identifier for for,
63 #define CHAR 1 /* unquoted character */
81 char *name; /* file name (unused if heredoc) */
82 char *delim; /* delimiter for <<,<<- */
83 char *heredoc;/* content of heredoc */
121 #define DOTILDE BIT(3) /* normal ~ expansion (first char) */
    [all...]
  /src/usr.bin/col/
col.c 45 static char sccsid[] = "@(#)col.c 8.5 (Berkeley) 5/4/95";
82 typedef char CSET;
91 } CHAR;
95 CHAR *l_line; /* characters on the line */
113 static CSET last_set; /* char_set of last char printed */
129 main(int argc, char **argv)
132 CHAR *c;
317 (unsigned)need * sizeof(CHAR))) == NULL)
433 CHAR *c, *endc;
440 static CHAR *sorted
    [all...]
  /src/usr.bin/xlint/common/
lint.h 56 char *data;
67 CHAR, /* char */
68 SCHAR, /* signed char */
69 UCHAR, /* unsigned char */
126 const char *tt_name; /* name of the type */
165 ch_isalnum(char ch)
167 return isalnum((unsigned char)ch) != 0;
171 ch_isalpha(char ch)
173 return isalpha((unsigned char)ch) != 0
    [all...]
  /src/lib/libc/gen/
glob.c 38 static char sccsid[] = "@(#)glob.c 8.3 (Berkeley) 10/13/93";
135 typedef unsigned short Char;
139 #define M_QUOTE (Char)0x80
140 #define M_PROTECT (Char)0x40
141 #define M_MASK (Char)0xff
142 #define M_ASCII (Char)0x7f
144 typedef char Char;
149 #define CHAR(c) ((Char)((c)&M_ASCII)
    [all...]
  /src/games/battlestar/
extern.h 121 #define CHAR 53
242 const char *name;
252 const char *desc;
260 extern const char *const objdes[NUMOFOBJECTS];
261 extern const char *const objsht[NUMOFOBJECTS];
262 extern const char *const ouch[NUMOFINJURIES];
279 extern char words[NWORD][WORDLEN];
310 extern char beenthere[NUMOFROOMS + 1];
311 extern char injuries[NUMOFINJURIES];
314 extern const char *username
    [all...]
  /src/bin/csh/
csh.h 66 typedef short Char;
70 typedef char Char;
84 #include "char.h"
131 extern Char *arginp; /* Argument input for sh -c and internal `xx` */
132 extern Char *ffile; /* Name of shell file for $0 */
135 extern char *seterr; /* Error message from scanner/parser */
136 extern Char *shtemp; /* Temp name for << shell files in /tmp */
149 extern Char *doldol; /* Character pid for $$ */
189 extern Char *gointr; /* Label for an onintr transfer *
    [all...]

Completed in 17 milliseconds