comparison src/charset.c @ 48317:8ce6ddfd61d0

Declare all args (per C99).
author Dave Love <fx@gnu.org>
date Thu, 14 Nov 2002 14:12:30 +0000
parents 876356a4a4ca
children 23a1cea22d13
comparison
equal deleted inserted replaced
48316:043dddbc037a 48317:8ce6ddfd61d0
1270 respectively. */ 1270 respectively. */
1271 1271
1272 int 1272 int
1273 c_string_width (str, len, precision, nchars, nbytes) 1273 c_string_width (str, len, precision, nchars, nbytes)
1274 const unsigned char *str; 1274 const unsigned char *str;
1275 int precision, *nchars, *nbytes; 1275 int len, precision, *nchars, *nbytes;
1276 { 1276 {
1277 int i = 0, i_byte = 0; 1277 int i = 0, i_byte = 0;
1278 int width = 0; 1278 int width = 0;
1279 int chars; 1279 int chars;
1280 struct Lisp_Char_Table *dp = buffer_display_table (); 1280 struct Lisp_Char_Table *dp = buffer_display_table ();