Path: utzoo!utgpu!water!watmath!clyde!rutgers!umd5!trantor.umd.edu!chris From: chris@trantor.umd.edu (Chris Torek) Newsgroups: comp.lang.c Subject: Re: double indirection (small correction) Message-ID: <2293@umd5.umd.edu> Date: 13 Feb 88 09:17:50 GMT References: <4292@rosevax.Rosemount.COM> <2292@umd5.umd.edu> Sender: ris@umd5.umd.edu Reply-To: chris@trantor.umd.edu (Chris Torek) Organization: University of Maryland, College Park Lines: 20 In article <2292@umd5.umd.edu> I wrote - /* skip word characters */ - while (isalnum(*s)) - s++; - if (*s == 0) /* no more characters */ - *nextp = NULL; - else { - *s = 0; - nextp = s + 1; - } That last assignment should be *nextp = s + 1; Sorry about that. -- In-Real-Life: Chris Torek, Univ of MD Computer Science, +1 301 454 7163 (hiding out on trantor.umd.edu until mimsy is reassembled in its new home) Domain: chris@mimsy.umd.edu Path: not easily reachable