subr_prf.c (7e99c034f788128c7d168eaf27af9a3acaa06163) | subr_prf.c (679e4cdabdc5a93e5c0d7cdf3fc52202a8de02ef) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1986, 1988, 1991, 1993 5 * The Regents of the University of California. All rights reserved. 6 * (c) UNIX System Laboratories, Inc. 7 * All or some portions of this file are derived from material licensed 8 * to the University of California by American Telephone and Telegraph --- 834 unchanged lines hidden (view full) --- 843 case 't': 844 tflag = 1; 845 goto reswitch; 846 case 'u': 847 base = 10; 848 goto handle_nosign; 849 case 'X': 850 upper = 1; | 1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1986, 1988, 1991, 1993 5 * The Regents of the University of California. All rights reserved. 6 * (c) UNIX System Laboratories, Inc. 7 * All or some portions of this file are derived from material licensed 8 * to the University of California by American Telephone and Telegraph --- 834 unchanged lines hidden (view full) --- 843 case 't': 844 tflag = 1; 845 goto reswitch; 846 case 'u': 847 base = 10; 848 goto handle_nosign; 849 case 'X': 850 upper = 1; |
851 /* FALLTHROUGH */ |
|
851 case 'x': 852 base = 16; 853 goto handle_nosign; 854 case 'y': 855 base = 16; 856 sign = 1; 857 goto handle_sign; 858 case 'z': --- 451 unchanged lines hidden --- | 852 case 'x': 853 base = 16; 854 goto handle_nosign; 855 case 'y': 856 base = 16; 857 sign = 1; 858 goto handle_sign; 859 case 'z': --- 451 unchanged lines hidden --- |