/* * Copyright 1999-2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* ------------------------------------------------------------------------- * * Author Pier Fumagalli * Version $Id$ * ------------------------------------------------------------------------- */ #include int main(void) { char buf[1024]; char *ret=NULL; int x=0; int y=0; int k=0; int s=0; int l=0; while ((ret=fgets(buf,1024,stdin))!=NULL) { for (x=strlen(ret); x>=0; x--) { if((ret[x]=='\0')||(ret[x]=='\t')||(ret[x]=='\n')||(ret[x]==' ')) ret[x]='\0'; else break; } k=0; for (x=0; x=80) fprintf(stderr,"line %4d (%4d) [%s]\n",l,k,ret); } }