Greetings, I'm struggling with the task 5.17 particularly with the way it solves task challenge. I have solution from Tondo's 'The C Answer Book' and I'm trying to figure how to sort fields within lines with external arguments since it sorts only 1st field within any line no matter what I parse as an argument in switches + -, thx in advance
EDIT: My struggle is how it solves problem with sorting fields within lines. How can I see if it works ? Can you test it and send me clue ?! Thx
EDIT: E.g. I type: 
Numbers in the 2nd field of every line are not sorted?!
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#define LGT 400
#define BUF 400
#define NUM 1
#define REV 2
#define FOLD 4
#define DIR 8
#define LINES 100
static char option=0;
int pos1=0;
int pos2=0;
static char buffer[BUF];
static char *bp=buffer;
char *alloc(int lg)
{
if(buffer+LGT-bp<=lg)
return 0;
else {
bp+=lg;
return bp-lg;
}
}
int getl(char *s, int max)
{
int c;
char *t=s;
while(--max>0 && (c=getchar())!=EOF && c!='\n')
*s++=c;
if(c=='\n')
*s++=c;
*s='\0';
return s-t;
}
int readl(char *lptr[], int maxl)
{
int lenum,nl=0;
char *p,k=0;
char arnum[LGT];
while((lenum=getl(arnum,LGT))>0)
if(lenum>=maxl || (p=alloc(lenum))==NULL)
return -1;
else {
arnum[lenum-1]='\0';
strcpy(p,arnum);
lptr[nl++]=p;
}
return nl;
}
void qsort(void *v[],int left, int right, int (*cmp) (void *, void *))
{
void swap(void *v[],int l, int r);
int last,i;
if(left>=right)
return;
swap(v,left,(left+right)/2);
last=left;
for(i=left+1;i<=right;i++)
if((*cmp)(v[i],v[left])<0)
swap(v,++last,i);
swap(v,left,last);
qsort(v,left,last-1,cmp);
qsort(v,last+1,right,cmp);
}
void swap(void *v[],int l, int r)
{
void *temp;
temp=v[l];
v[l]=v[r];
v[r]=temp;
}
void readargs(int argc, char *argv[])
{
int c;
void error(char *s);
while(--argc>0 && (c = (*++argv)[0])=='-'||c=='+'){
if(c=='-' && !isdigit(*(argv[0]+1)))
while(c=*++argv[0])
switch(c){
case 'd':
option |= DIR;
break;
case 'n':
option |= NUM;
break;
case 'r':
option |= REV;
break;
case 'f':
option |= FOLD;
break;
default:
printf("Option %s not found\n",c);
argc=1;
break;
}
else if(c=='-')
pos2=atoi(argv[0]+1);
else if((pos1=atoi(argv[0]+1))<0)
error("Usage: ");
}
if(argc||pos1>pos2)
error("Usage: ");
}
int numcmp(char *a, char *b, int maxs)
{
void substr(char *s, char *str);
double x, y;
char str[LGT];
substr(a,str);
x=atof(str);
substr(b,str);
y=atof(str);
if(x<y)
return -1;
else if(x>y)
return 1;
else
return 0;
}
void writel(char *lptr[],int lgt, int opt)
{
int i;
if(opt)
for(i=lgt-1;i>=0;i--)
printf("%s\n",lptr[i]);
else
for(i=0;i<lgt;i++)
printf("%s\n",lptr[i]);
}
void error(char *s)
{
printf("%s\n",s);
}
void substr(char *s, char *str)
{
int i, j, len;
len=strlen(s);
if(pos2>0 && len>pos2)
len=pos2;
else if(pos2>0 && len<pos2)
error("substr: string too short");
for(j=0, i=pos1;i<len;i++,j++)
str[j]=s[i];
str[j]='\0';
}
int charcmp(char *s, char *t)
{
char x, y;
int i, j, endpos;
int dir=(option & DIR) ? 1:0;
int fold=(option & FOLD) ? 1:0;
i=j=pos1;
if(pos2>0)
endpos=pos2;
else if((unsigned)(endpos=strlen(s)) > strlen(t))
endpos=strlen(t);
do {
if(dir){
while(i<endpos && !isalnum(s[i]) && s[i]!=' ' && s[i]!='\0')
i++;
while(j<endpos && !isalnum(t[j]) && t[j]!=' ' && t[j]!='\0')
j++;
}
if(i<endpos && j<endpos){
x=fold?tolower(s[i]):s[i];
i++;
y=fold?tolower(t[j]):t[j];
j++;
if(x==y && x=='\0')
return 0;
}
}while(x==y && i<endpos && j<endpos);
return x-y;
}
int main(int argc, char *argv[])
{
int len,rc;
char *lptrx[LGT];
readargs(argc,argv);
if((len=readl(lptrx,LGT))>0){
if(option & NUM)
qsort((void **)lptrx,0,len-1,
(int (*)(void *, void *))numcmp);
else
qsort((void **)lptrx,0,len-1,
(int (*)(void *, void *))charcmp);
writel(lptrx,len,option & REV);
}
else {
printf("Too long input\n");
rc=-1;
}
}