db_variables.c (37224cd3fcb911d440e40dd8e1f31652e2452537) | db_variables.c (d39d4a6e6412f88225d1b78c8a797ab82daac250) |
---|---|
1/* 2 * Mach Operating System 3 * Copyright (c) 1991,1990 Carnegie Mellon University 4 * All Rights Reserved. 5 * 6 * Permission to use, copy, modify and distribute this software and its 7 * documentation is hereby granted, provided that both the copyright 8 * notice and this permission notice appear in all copies of the --- 31 unchanged lines hidden (view full) --- 40 41static int db_find_variable(struct db_variable **varp); 42 43static struct db_variable db_vars[] = { 44 { "radix", &db_radix, FCN_NULL }, 45 { "maxoff", &db_maxoff, FCN_NULL }, 46 { "maxwidth", &db_max_width, FCN_NULL }, 47 { "tabstops", &db_tab_stop_width, FCN_NULL }, | 1/* 2 * Mach Operating System 3 * Copyright (c) 1991,1990 Carnegie Mellon University 4 * All Rights Reserved. 5 * 6 * Permission to use, copy, modify and distribute this software and its 7 * documentation is hereby granted, provided that both the copyright 8 * notice and this permission notice appear in all copies of the --- 31 unchanged lines hidden (view full) --- 40 41static int db_find_variable(struct db_variable **varp); 42 43static struct db_variable db_vars[] = { 44 { "radix", &db_radix, FCN_NULL }, 45 { "maxoff", &db_maxoff, FCN_NULL }, 46 { "maxwidth", &db_max_width, FCN_NULL }, 47 { "tabstops", &db_tab_stop_width, FCN_NULL }, |
48 { "lines", &db_lines_per_page, FCN_NULL }, |
|
48}; 49static struct db_variable *db_evars = 50 db_vars + sizeof(db_vars)/sizeof(db_vars[0]); 51 52static int 53db_find_variable(struct db_variable **varp) 54{ 55 struct db_variable *vp; --- 97 unchanged lines hidden --- | 49}; 50static struct db_variable *db_evars = 51 db_vars + sizeof(db_vars)/sizeof(db_vars[0]); 52 53static int 54db_find_variable(struct db_variable **varp) 55{ 56 struct db_variable *vp; --- 97 unchanged lines hidden --- |