extern.h (9b50d9027575220cb6dd09b3e62f03f511e908b8) | extern.h (af647767ed8f2ec38251e8185ef0b6adb35529e6) |
---|---|
1/*- 2 * Copyright (c) 1991, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 33 unchanged lines hidden (view full) --- 42 int *set; /* set of characters */ 43 char *str; /* user's string */ 44} STR; 45 46#include <limits.h> 47#define NCHARS (UCHAR_MAX + 1) /* Number of possible characters. */ 48#define OOBCH (UCHAR_MAX + 1) /* Out of band character value. */ 49 | 1/*- 2 * Copyright (c) 1991, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 33 unchanged lines hidden (view full) --- 42 int *set; /* set of characters */ 43 char *str; /* user's string */ 44} STR; 45 46#include <limits.h> 47#define NCHARS (UCHAR_MAX + 1) /* Number of possible characters. */ 48#define OOBCH (UCHAR_MAX + 1) /* Out of band character value. */ 49 |
50void err __P((const char *fmt, ...)); | |
51int next __P((STR *)); | 50int next __P((STR *)); |