source: util.c @ e98a9f9

barnowl_perlaimdebianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since e98a9f9 was d524c83, checked in by Nelson Elhage <nelhage@mit.edu>, 17 years ago
free() should be owl_free()
  • Property mode set to 100644
File size: 18.6 KB
Line 
1#include "owl.h"
2#include <stdlib.h>
3#include <string.h>
4#include <unistd.h>
5#include <ctype.h>
6#include <pwd.h>
7
8static const char fileIdent[] = "$Id$";
9
10void sepbar(char *in)
11{
12  char buff[1024];
13  WINDOW *sepwin;
14  owl_messagelist *ml;
15  owl_view *v;
16  int x, y, i;
17  char *foo, *appendtosepbar;
18
19  sepwin=owl_global_get_curs_sepwin(&g);
20  ml=owl_global_get_msglist(&g);
21  v=owl_global_get_current_view(&g);
22
23  werase(sepwin);
24  wattron(sepwin, A_REVERSE);
25  if (owl_global_is_fancylines(&g)) {
26    whline(sepwin, ACS_HLINE, owl_global_get_cols(&g));
27  } else {
28    whline(sepwin, '-', owl_global_get_cols(&g));
29  }
30
31  if (owl_global_is_sepbar_disable(&g)) {
32    getyx(sepwin, y, x);
33    wmove(sepwin, y, owl_global_get_cols(&g)-1);
34    return;
35  }
36
37  wmove(sepwin, 0, 2); 
38
39  if (owl_messagelist_get_size(ml)==0) {
40    strcpy(buff, " (-/-) ");
41  } else {
42    snprintf(buff, 1024, " (%i/%i/%i) ", owl_global_get_curmsg(&g)+1,
43            owl_view_get_size(v),
44            owl_messagelist_get_size(ml));
45  }
46  waddstr(sepwin, buff);
47
48  foo=owl_view_get_filtname(v);
49  if (strcmp(foo, owl_global_get_view_home(&g))) wattroff(sepwin, A_REVERSE);
50  waddstr(sepwin, " ");
51  waddstr(sepwin, owl_view_get_filtname(v));
52  waddstr(sepwin, " ");
53  if (strcmp(foo, owl_global_get_view_home(&g))) wattron(sepwin, A_REVERSE);
54
55  if (owl_mainwin_is_curmsg_truncated(owl_global_get_mainwin(&g))) {
56    getyx(sepwin, y, x);
57    wmove(sepwin, y, x+2);
58    wattron(sepwin, A_BOLD);
59    waddstr(sepwin, " <truncated> ");
60    wattroff(sepwin, A_BOLD);
61  }
62
63  i=owl_mainwin_get_last_msg(owl_global_get_mainwin(&g));
64  if ((i != -1) &&
65      (i < owl_view_get_size(v)-1)) {
66    getyx(sepwin, y, x);
67    wmove(sepwin, y, x+2);
68    wattron(sepwin, A_BOLD);
69    waddstr(sepwin, " <more> ");
70    wattroff(sepwin, A_BOLD);
71  }
72
73  if (owl_global_get_rightshift(&g)>0) {
74    getyx(sepwin, y, x);
75    wmove(sepwin, y, x+2);
76    snprintf(buff, 1024, " right: %i ", owl_global_get_rightshift(&g));
77    waddstr(sepwin, buff);
78  }
79
80  if (owl_global_is_zaway(&g) || owl_global_is_aaway(&g)) {
81    getyx(sepwin, y, x);
82    wmove(sepwin, y, x+2);
83    wattron(sepwin, A_BOLD);
84    wattroff(sepwin, A_REVERSE);
85    if (owl_global_is_zaway(&g) && owl_global_is_aaway(&g)) {
86      waddstr(sepwin, " AWAY ");
87    } else if (owl_global_is_zaway(&g)) {
88      waddstr(sepwin, " Z-AWAY ");
89    } else if (owl_global_is_aaway(&g)) {
90      waddstr(sepwin, " A-AWAY ");
91    }
92    wattron(sepwin, A_REVERSE);
93    wattroff(sepwin, A_BOLD);
94  }
95
96  if (owl_global_get_curmsg_vert_offset(&g)) {
97    getyx(sepwin, y, x);
98    wmove(sepwin, y, x+2);
99    wattron(sepwin, A_BOLD);
100    wattroff(sepwin, A_REVERSE);
101    waddstr(sepwin, " SCROLL ");
102    wattron(sepwin, A_REVERSE);
103    wattroff(sepwin, A_BOLD);
104  }
105 
106  if (in) {
107    getyx(sepwin, y, x);
108    wmove(sepwin, y, x+2);
109    waddstr(sepwin, in);
110  }
111
112  appendtosepbar = owl_global_get_appendtosepbar(&g);
113  if (appendtosepbar && *appendtosepbar) {
114    getyx(sepwin, y, x);
115    wmove(sepwin, y, x+2);
116    waddstr(sepwin, " ");
117    waddstr(sepwin, owl_global_get_appendtosepbar(&g));
118    waddstr(sepwin, " ");
119  }
120
121  getyx(sepwin, y, x);
122  wmove(sepwin, y, owl_global_get_cols(&g)-1);
123   
124  wattroff(sepwin, A_BOLD);
125  wattroff(sepwin, A_REVERSE);
126  wnoutrefresh(sepwin);
127}
128
129
130void pophandler_quit(int ch)
131{
132  if (ch=='q') {
133    owl_popwin_close(owl_global_get_popwin(&g));
134  }
135}
136
137char **atokenize(char *buffer, char *sep, int *i)
138{
139  /* each element of return must be freed by user */
140  char **args;
141  char *workbuff, *foo;
142  int done=0, first=1, count=0;
143
144  workbuff=owl_malloc(strlen(buffer)+1);
145  memcpy(workbuff, buffer, strlen(buffer)+1);
146
147  args=NULL;
148  while (!done) {
149    if (first) {
150      first=0;
151      foo=(char *)strtok(workbuff, sep);
152    } else {
153      foo=(char *)strtok(NULL, sep);
154    }
155    if (foo==NULL) {
156      done=1;
157    } else {
158      args=(char **)owl_realloc(args, sizeof(char *) * (count+1));
159      args[count]=owl_malloc(strlen(foo)+1);
160      strcpy(args[count], foo);
161      count++;
162    }
163  }
164  *i=count;
165  owl_free(workbuff);
166  return(args);
167}
168
169char *skiptokens(char *buff, int n) {
170  /* skips n tokens and returns where that would be.
171   * TODO: handle quotes more sanely. */
172 
173  int inquotes=0;
174  while (*buff && n>0) {
175      while (*buff == ' ') buff++;
176      while (*buff && (inquotes || *buff != ' ')) { 
177        if (*buff == '"' || *buff == '\'') inquotes=!inquotes;
178        buff++;
179      }
180      while (*buff == ' ') buff++;
181      n--;
182  }
183  return buff;
184}
185
186/* Return a "nice" version of the path.  Tilde expansion is done, and
187 * duplicate slashes are removed.  Caller must free the return.
188 */
189char *owl_util_makepath(char *in)
190{
191  int i, j, x;
192  char *out, user[MAXPATHLEN];
193  struct passwd *pw;
194
195  out=owl_malloc(MAXPATHLEN+1);
196  out[0]='\0';
197  j=strlen(in);
198  x=0;
199  for (i=0; i<j; i++) {
200    if (in[i]=='~') {
201      if ( (i==(j-1)) ||          /* last character */
202           (in[i+1]=='/') ) {     /* ~/ */
203        /* use my homedir */
204        pw=getpwuid(getuid());
205        if (!pw) {
206          out[x]=in[i];
207        } else {
208          out[x]='\0';
209          strcat(out, pw->pw_dir);
210          x+=strlen(pw->pw_dir);
211        }
212      } else {
213        /* another user homedir */
214        int a, b;
215        b=0;
216        for (a=i+1; i<j; a++) {
217          if (in[a]==' ' || in[a]=='/') {
218            break;
219          } else {
220            user[b]=in[a];
221            i++;
222            b++;
223          }
224        }
225        user[b]='\0';
226        pw=getpwnam(user);
227        if (!pw) {
228          out[x]=in[i];
229        } else {
230          out[x]='\0';
231          strcat(out, pw->pw_dir);
232          x+=strlen(pw->pw_dir);
233        }
234      }
235    } else if (in[i]=='/') {
236      /* check for a double / */
237      if (i<(j-1) && (in[i+1]=='/')) {
238        /* do nothing */
239      } else {
240        out[x]=in[i];
241        x++;
242      }
243    } else {
244      out[x]=in[i];
245      x++;
246    }
247  }
248  out[x]='\0';
249  return(out);
250}
251
252void atokenize_free(char **tok, int nels)
253{
254  int i;
255  for (i=0; i<nels; i++) {
256    owl_free(tok[i]);
257  }
258  owl_free(tok);
259}
260
261
262void owl_parsefree(char **argv, int argc)
263{
264  int i;
265
266  if (!argv) return;
267 
268  for (i=0; i<argc; i++) {
269    if (argv[i]) owl_free(argv[i]);
270  }
271  owl_free(argv);
272}
273
274char **owl_parseline(char *line, int *argc)
275{
276  /* break a command line up into argv, argc.  The caller must free
277     the returned values.  If there is an error argc will be set to
278     -1, argv will be NULL and the caller does not need to free
279     anything */
280
281  char **argv;
282  int i, len, between=1;
283  char *curarg;
284  char quote;
285
286  argv=owl_malloc(sizeof(char *));
287  len=strlen(line);
288  curarg=owl_malloc(len+10);
289  strcpy(curarg, "");
290  quote='\0';
291  *argc=0;
292  for (i=0; i<len+1; i++) {
293    /* find the first real character */
294    if (between) {
295      if (line[i]==' ' || line[i]=='\t' || line[i]=='\0') {
296        continue;
297      } else {
298        between=0;
299        i--;
300        continue;
301      }
302    }
303
304    /* deal with a quote character */
305    if (line[i]=='"' || line[i]=="'"[0]) {
306      /* if this type of quote is open, close it */
307      if (quote==line[i]) {
308        quote='\0';
309        continue;
310      }
311
312      /* if no quoting is open then open with this */
313      if (quote=='\0') {
314        quote=line[i];
315        continue;
316      }
317
318      /* if another type of quote is open then treat this as a literal */
319      curarg[strlen(curarg)+1]='\0';
320      curarg[strlen(curarg)]=line[i];
321      continue;
322    }
323
324    /* if it's not a space or end of command, then use it */
325    if (line[i]!=' ' && line[i]!='\t' && line[i]!='\n' && line[i]!='\0') {
326      curarg[strlen(curarg)+1]='\0';
327      curarg[strlen(curarg)]=line[i];
328      continue;
329    }
330
331    /* otherwise, if we're not in quotes, add the whole argument */
332    if (quote=='\0') {
333      /* add the argument */
334      argv=owl_realloc(argv, sizeof(char *)*((*argc)+1));
335      argv[*argc]=owl_malloc(strlen(curarg)+2);
336      strcpy(argv[*argc], curarg);
337      *argc=*argc+1;
338      strcpy(curarg, "");
339      between=1;
340      continue;
341    }
342
343    /* if it is a space and we're in quotes, then use it */
344    curarg[strlen(curarg)+1]='\0';
345    curarg[strlen(curarg)]=line[i];
346  }
347
348  owl_free(curarg);
349
350  /* check for unbalanced quotes */
351  if (quote!='\0') {
352    owl_parsefree(argv, *argc);
353    *argc=-1;
354    return(NULL);
355  }
356
357  return(argv);
358}
359
360/* caller must free the return */
361char *owl_util_minutes_to_timestr(int in)
362{
363  int days, hours;
364  long run;
365  char *out;
366
367  run=in;
368
369  days=run/1440;
370  run-=days*1440;
371  hours=run/60;
372  run-=hours*60;
373
374  if (days>0) {
375    out=owl_sprintf("%i d %2.2i:%2.2i", days, hours, run);
376  } else {
377    out=owl_sprintf("    %2.2i:%2.2i", hours, run);
378  }
379  return(out);
380}
381
382/* return the index of the last char before a change from the first one */
383int owl_util_find_trans(char *in, int len)
384{
385  int i;
386  for (i=1; i<len; i++) {
387    if (in[i] != in[0]) return(i-1);
388  }
389  return(i);
390}
391
392/* downcase the string 'foo' */
393void downstr(char *foo)
394{
395  int i;
396  for (i=0; foo[i]!='\0'; i++) {
397    foo[i]=tolower(foo[i]);
398  }
399}
400
401/* Caller must free response.
402 * Takes in strings which are space-separated lists of tokens
403 * and returns a single string containing no token more than once.
404 * If prohibit is non-null, no token may start with a character
405 * in prohibit.
406 */
407char *owl_util_uniq(char *A, char *B, char *prohibit)
408{
409 
410  char *cat, **tok;
411  int toklen, i, j, first=1;
412  cat = owl_malloc(strlen(A)+strlen(B)+3);
413  strcpy(cat, A);
414  strcat(cat, " ");
415  strcat(cat, B);
416  tok = atokenize(cat, " ", &toklen);
417  strcpy(cat, "");
418  for (i=0; i<toklen; i++) {
419    int dup=0;
420    for (j=0; j<i; j++) {
421      if (!strcmp(tok[i], tok[j])) dup=1;
422    }
423    if (!dup && (!prohibit || !strchr(prohibit, tok[i][0]))) {
424      if (!first) {
425        strcat(cat, " ");
426      }
427      first=0;
428      strcat(cat, tok[i]);
429    }
430  }
431  atokenize_free(tok, toklen);
432  return(cat);
433}
434
435/* hooks for doing memory allocation et. al. in owl */
436
437void *owl_malloc(size_t size)
438{
439  return(malloc(size));
440}
441
442void owl_free(void *ptr)
443{
444  free(ptr);
445}
446
447char *owl_strdup(const char *s1)
448{
449  return(strdup(s1));
450}
451
452void *owl_realloc(void *ptr, size_t size)
453{
454  return(realloc(ptr, size));
455}
456
457/* allocates memory and returns the string or null.
458 * caller must free the string.
459 * from Linux sprintf man page.
460 */
461char *owl_sprintf(const char *fmt, ...)
462{
463  int n, size = 100;
464  char *p;
465  va_list ap;
466  if ((p = owl_malloc (size)) == NULL) return (NULL);
467  while (1) {
468    /* Try to print in the allocated space. */
469    va_start(ap, fmt);
470    n = vsnprintf (p, size, fmt, ap);
471    va_end(ap);
472    /* If that worked, return the string. */
473    if (n > -1 && n < size)
474      return p;
475    /* Else try again with more space. */
476    if (n > -1)    /* glibc 2.1 */
477      size = n+1; /* precisely what is needed */
478    else           /* glibc 2.0 */
479      size *= 2;  /* twice the old size */
480    if ((p = owl_realloc (p, size)) == NULL)
481      return NULL;
482  }
483}
484
485/* Return the owl color associated with the named color.  Return -1
486 * if the named color is not available
487 */
488int owl_util_string_to_color(char *color)
489{
490  if (!strcasecmp(color, "black")) {
491    return(OWL_COLOR_BLACK);
492  } else if (!strcasecmp(color, "red")) {
493    return(OWL_COLOR_RED);
494  } else if (!strcasecmp(color, "green")) {
495    return(OWL_COLOR_GREEN);
496  } else if (!strcasecmp(color, "yellow")) {
497    return(OWL_COLOR_YELLOW);
498  } else if (!strcasecmp(color, "blue")) {
499    return(OWL_COLOR_BLUE);
500  } else if (!strcasecmp(color, "magenta")) {
501    return(OWL_COLOR_MAGENTA);
502  } else if (!strcasecmp(color, "cyan")) {
503    return(OWL_COLOR_CYAN);
504  } else if (!strcasecmp(color, "white")) {
505    return(OWL_COLOR_WHITE);
506  } else if (!strcasecmp(color, "default")) {
507    return(OWL_COLOR_DEFAULT);
508  }
509  return(-1);
510}
511
512/* Return a string name of the given owl color */
513char *owl_util_color_to_string(int color)
514{
515  if (color==OWL_COLOR_BLACK)   return("black");
516  if (color==OWL_COLOR_RED)     return("red");
517  if (color==OWL_COLOR_GREEN)   return("green");
518  if (color==OWL_COLOR_YELLOW)  return("yellow");
519  if (color==OWL_COLOR_BLUE)    return("blue");
520  if (color==OWL_COLOR_MAGENTA) return("magenta");
521  if (color==OWL_COLOR_CYAN)    return("cyan");
522  if (color==OWL_COLOR_WHITE)   return("white");
523  if (color==OWL_COLOR_DEFAULT) return("default");
524  return("Unknown color");
525}
526
527/* Get the default tty name.  Caller must free the return */
528char *owl_util_get_default_tty()
529{
530  char *out, *tmp;
531
532  if (getenv("DISPLAY")) {
533    out=owl_strdup(getenv("DISPLAY"));
534  } else if ((tmp=ttyname(fileno(stdout)))!=NULL) {
535    out=owl_strdup(tmp);
536    if (!strncmp(out, "/dev/", 5)) {
537      owl_free(out);
538      out=owl_strdup(tmp+5);
539    }
540  } else {
541    out=owl_strdup("unknown");
542  }
543  return(out);
544}
545
546
547/* Animation hack */
548void owl_hack_animate()
549{
550  owl_messagelist *ml;
551  owl_message *m;
552  owl_fmtext *fm;
553  char *text, *ptr;
554  int place;
555
556  /* grab the first message and make sure its id is 0 */
557  ml=owl_global_get_msglist(&g);
558  m=owl_messagelist_get_element(ml, 0);
559  if (!m) return;
560  if (owl_message_get_id(m)!=0) return;
561
562  fm=owl_message_get_fmtext(m);
563  text=owl_fmtext_get_text(fm);
564
565  ptr=strstr(text, "OvO");
566  if (ptr) {
567    place=ptr-text;
568    owl_fmtext_set_char(fm, place, '-');
569    owl_fmtext_set_char(fm, place+2, '-');
570
571    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
572    if (owl_popwin_is_active(owl_global_get_popwin(&g))) {
573      owl_popwin_refresh(owl_global_get_popwin(&g));
574      /* TODO: this is a broken kludge */
575      if (owl_global_get_viewwin(&g)) {
576        owl_viewwin_redisplay(owl_global_get_viewwin(&g), 0);
577      }
578    }
579    owl_global_set_needrefresh(&g);
580    return;
581  }
582
583  ptr=strstr(text, "-v-");
584  if (ptr) {
585    place=ptr-text;
586    owl_fmtext_set_char(fm, place, 'O');
587    owl_fmtext_set_char(fm, place+2, 'O');
588
589    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
590    if (owl_popwin_is_active(owl_global_get_popwin(&g))) {
591      owl_popwin_refresh(owl_global_get_popwin(&g));
592      /* TODO: this is a broken kludge */
593      if (owl_global_get_viewwin(&g)) {
594        owl_viewwin_redisplay(owl_global_get_viewwin(&g), 0);
595      }
596    }
597    owl_global_set_needrefresh(&g);
598    return;
599  }
600}
601
602/* strip leading and trailing new lines.  Caller must free the
603 * return.
604 */
605char *owl_util_stripnewlines(char *in)
606{
607 
608  char  *tmp, *ptr1, *ptr2, *out;
609
610  ptr1=tmp=owl_strdup(in);
611  while (ptr1[0]=='\n') {
612    ptr1++;
613  }
614  ptr2=ptr1+strlen(ptr1)-1;
615  while (ptr2>ptr1 && ptr2[0]=='\n') {
616    ptr2[0]='\0';
617    ptr2--;
618  }
619
620  out=owl_strdup(ptr1);
621  owl_free(tmp);
622  return(out);
623}
624
625/* Delete the line matching "line" from the named file.  If no such
626 * line is found the file is left intact.  If backup==1 then create a
627 * backupfile containing the original contents.  This is an
628 * inefficient impelementation which reads the entire file into
629 * memory.
630 */
631void owl_util_file_deleteline(char *filename, char *line, int backup)
632{
633  char buff[LINE], *text;
634  char *backupfilename="";
635  FILE *file, *backupfile=NULL;
636  int size, newline;
637
638  /* open the file for reading */
639  file=fopen(filename, "r");
640  if (!file) {
641    owl_function_error("Error opening file %s", filename);
642    return;
643  }
644
645  /* open the backup file for writing */
646  if (backup) {
647    backupfilename=owl_sprintf("%s.backup", filename);
648    backupfile=fopen(backupfilename, "w");
649    if (!backupfile) {
650      owl_function_error("Error opening file %s for writing", backupfilename);
651      owl_free(backupfilename);
652      return;
653    }
654    owl_free(backupfilename);
655  }
656
657  /* we'll read the entire file into memory, minus the line we don't want and
658   * and at the same time create the backup file if necessary
659   */
660  text=owl_malloc(LINE);
661  strcpy(text, "");
662  size=LINE;
663  while (fgets(buff, LINE, file)!=NULL) {
664    /* strip the newline */
665    newline=0;
666    if (buff[strlen(buff)-1]=='\n') {
667      buff[strlen(buff)-1]='\0';
668      newline=1;
669    }
670   
671    /* if we don't match the line, add to saved text in memory */
672    if (strcasecmp(buff, line)) {
673      size+=LINE;
674      text=owl_realloc(text, size);
675      strcat(text, buff);
676      if (newline) strcat(text, "\n");
677    }
678
679    /* write to backupfile if necessary */
680    if (backup) {
681      fputs(buff, backupfile);
682      if (newline) fputs("\n", backupfile);
683    }
684  }
685  if (backup) fclose(backupfile);
686  fclose(file);
687
688  /* now rewrite the original file from memory */
689  file=fopen(filename, "w");
690  if (!file) {
691    owl_function_error("WARNING: Error opening %s for writing.  Use %s to restore.", filename, backupfilename);
692    owl_function_beep();
693    owl_free(line);
694    return;
695  }
696
697  fputs(text, file);
698  fclose(file);
699}
700
701/* add the string 'str' to the list 'list' of strings, only if it
702 * is not already present
703 */
704void owl_util_list_add_unique_string(owl_list *list, char *str)
705{
706  int i, j;
707
708  j=owl_list_get_size(list);
709  for (i=0; i<j; i++) {
710    if (!strcmp(str, owl_list_get_element(list, i))) return;
711  }
712  owl_list_append_element(list, owl_strdup(str));
713}
714
715int owl_util_common_strings_in_lists(owl_list *a, owl_list *b)
716{
717  int i, j, x, y;
718
719  j=owl_list_get_size(a);
720  for (i=0; i<j; i++) {
721    y=owl_list_get_size(b);
722    for (x=0; x<y; x++) {
723      if (!strcmp(owl_list_get_element(a, i), owl_list_get_element(b, x))) return(1);
724    }
725  }
726  return(0);
727}
728
729int owl_util_max(int a, int b)
730{
731  if (a>b) return(a);
732  return(b);
733}
734
735int owl_util_min(int a, int b)
736{
737  if (a<b) return(a);
738  return(b);
739}
740
741/* Return the base class or instance from a zephyr class, by removing
742   leading `un' or trailing `.d'.
743   The caller is responsible for freeing the allocated string.
744*/
745char * owl_util_baseclass(char * class)
746{
747  char *ret;
748  char *start, *end;
749
750  start = class;
751  while(!strncmp(start, "un", 2)) {
752    start += 2;
753  }
754
755  start = owl_strdup(start);
756  end = start + strlen(start) - 1;
757  while(*end == 'd' && *(end-1) == '.') {
758    end -= 2;
759  }
760  *(end + 1) = 0;
761
762  return start;
763}
764
765/**************************************************************************/
766/************************* REGRESSION TESTS *******************************/
767/**************************************************************************/
768
769#ifdef OWL_INCLUDE_REG_TESTS
770
771#include "test.h"
772
773int owl_util_regtest(void)
774{
775  int numfailed=0;
776
777  printf("BEGIN testing owl_util\n");
778
779  FAIL_UNLESS("owl_util_substitute 1",
780              !strcmp("foo", owl_text_substitute("foo", "", "Y")));
781  FAIL_UNLESS("owl_text_substitute 2",
782              !strcmp("fYZYZ", owl_text_substitute("foo", "o", "YZ")));
783  FAIL_UNLESS("owl_text_substitute 3",
784              !strcmp("foo", owl_text_substitute("fYZYZ", "YZ", "o")));
785  FAIL_UNLESS("owl_text_substitute 4",
786              !strcmp("/u/foo/meep", owl_text_substitute("~/meep", "~", "/u/foo")));
787
788  FAIL_UNLESS("skiptokens 1", 
789              !strcmp("bar quux", skiptokens("foo bar quux", 1)));
790  FAIL_UNLESS("skiptokens 2", 
791              !strcmp("meep", skiptokens("foo 'bar quux' meep", 2)));
792
793  FAIL_UNLESS("owl_util_uniq 1", 
794              !strcmp("foo bar x", owl_util_uniq("foo", "bar x", "-")));
795  FAIL_UNLESS("owl_util_uniq 2", 
796              !strcmp("foo bar x", owl_util_uniq("foo", "bar -y x", "-")));
797  FAIL_UNLESS("owl_util_uniq 3", 
798              !strcmp("meep foo bar", owl_util_uniq("meep foo", "bar foo meep", "-")));
799
800  if (numfailed) printf("*** WARNING: failures encountered with owl_util\n");
801  printf("END testing owl_util (%d failures)\n", numfailed);
802  return(numfailed);
803}
804
805#endif /* OWL_INCLUDE_REG_TESTS */
Note: See TracBrowser for help on using the repository browser.