source: util.c @ ad15610

barnowl_perlaimdebianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since ad15610 was 93f65b6, checked in by Nelson Elhage <nelhage@mit.edu>, 17 years ago
Clean up an unused var warning.
  • Property mode set to 100644
File size: 18.9 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
392int owl_util_find_trans_short(short *in, int len)
393{
394  int i;
395  for (i=1; i<len; i++) {
396    if (in[i] != in[0]) return(i-1);
397  }
398  return(i);
399}
400
401/* downcase the string 'foo' */
402void downstr(char *foo)
403{
404  int i;
405  for (i=0; foo[i]!='\0'; i++) {
406    foo[i]=tolower(foo[i]);
407  }
408}
409
410/* Caller must free response.
411 * Takes in strings which are space-separated lists of tokens
412 * and returns a single string containing no token more than once.
413 * If prohibit is non-null, no token may start with a character
414 * in prohibit.
415 */
416char *owl_util_uniq(char *A, char *B, char *prohibit)
417{
418 
419  char *cat, **tok;
420  int toklen, i, j, first=1;
421  cat = owl_malloc(strlen(A)+strlen(B)+3);
422  strcpy(cat, A);
423  strcat(cat, " ");
424  strcat(cat, B);
425  tok = atokenize(cat, " ", &toklen);
426  strcpy(cat, "");
427  for (i=0; i<toklen; i++) {
428    int dup=0;
429    for (j=0; j<i; j++) {
430      if (!strcmp(tok[i], tok[j])) dup=1;
431    }
432    if (!dup && (!prohibit || !strchr(prohibit, tok[i][0]))) {
433      if (!first) {
434        strcat(cat, " ");
435      }
436      first=0;
437      strcat(cat, tok[i]);
438    }
439  }
440  atokenize_free(tok, toklen);
441  return(cat);
442}
443
444/* hooks for doing memory allocation et. al. in owl */
445
446void *owl_malloc(size_t size)
447{
448  return(malloc(size));
449}
450
451void owl_free(void *ptr)
452{
453  free(ptr);
454}
455
456char *owl_strdup(const char *s1)
457{
458  return(strdup(s1));
459}
460
461void *owl_realloc(void *ptr, size_t size)
462{
463  return(realloc(ptr, size));
464}
465
466/* allocates memory and returns the string or null.
467 * caller must free the string.
468 * from Linux sprintf man page.
469 */
470char *owl_sprintf(const char *fmt, ...)
471{
472  int n, size = 100;
473  char *p;
474  va_list ap;
475  if ((p = owl_malloc (size)) == NULL) return (NULL);
476  while (1) {
477    /* Try to print in the allocated space. */
478    va_start(ap, fmt);
479    n = vsnprintf (p, size, fmt, ap);
480    va_end(ap);
481    /* If that worked, return the string. */
482    if (n > -1 && n < size)
483      return p;
484    /* Else try again with more space. */
485    if (n > -1)    /* glibc 2.1 */
486      size = n+1; /* precisely what is needed */
487    else           /* glibc 2.0 */
488      size *= 2;  /* twice the old size */
489    if ((p = owl_realloc (p, size)) == NULL)
490      return NULL;
491  }
492}
493
494/* Return the owl color associated with the named color.  Return -1
495 * if the named color is not available
496 */
497int owl_util_string_to_color(char *color)
498{
499  int c;
500  if (!strcasecmp(color, "black")) {
501    return(OWL_COLOR_BLACK);
502  } else if (!strcasecmp(color, "red")) {
503    return(OWL_COLOR_RED);
504  } else if (!strcasecmp(color, "green")) {
505    return(OWL_COLOR_GREEN);
506  } else if (!strcasecmp(color, "yellow")) {
507    return(OWL_COLOR_YELLOW);
508  } else if (!strcasecmp(color, "blue")) {
509    return(OWL_COLOR_BLUE);
510  } else if (!strcasecmp(color, "magenta")) {
511    return(OWL_COLOR_MAGENTA);
512  } else if (!strcasecmp(color, "cyan")) {
513    return(OWL_COLOR_CYAN);
514  } else if (!strcasecmp(color, "white")) {
515    return(OWL_COLOR_WHITE);
516  } else if (!strcasecmp(color, "default")) {
517    return(OWL_COLOR_DEFAULT);
518  }
519  c = atoi(color);
520  if (c >= -1 && c < COLORS) {
521    return(c);
522  }
523  return(-1);
524}
525
526/* Return a string name of the given owl color */
527char *owl_util_color_to_string(int color)
528{
529  if (color==OWL_COLOR_BLACK)   return("black");
530  if (color==OWL_COLOR_RED)     return("red");
531  if (color==OWL_COLOR_GREEN)   return("green");
532  if (color==OWL_COLOR_YELLOW)  return("yellow");
533  if (color==OWL_COLOR_BLUE)    return("blue");
534  if (color==OWL_COLOR_MAGENTA) return("magenta");
535  if (color==OWL_COLOR_CYAN)    return("cyan");
536  if (color==OWL_COLOR_WHITE)   return("white");
537  if (color==OWL_COLOR_DEFAULT) return("default");
538  return("Unknown color");
539}
540
541/* Get the default tty name.  Caller must free the return */
542char *owl_util_get_default_tty()
543{
544  char *out, *tmp;
545
546  if (getenv("DISPLAY")) {
547    out=owl_strdup(getenv("DISPLAY"));
548  } else if ((tmp=ttyname(fileno(stdout)))!=NULL) {
549    out=owl_strdup(tmp);
550    if (!strncmp(out, "/dev/", 5)) {
551      owl_free(out);
552      out=owl_strdup(tmp+5);
553    }
554  } else {
555    out=owl_strdup("unknown");
556  }
557  return(out);
558}
559
560
561/* Animation hack */
562void owl_hack_animate()
563{
564  owl_messagelist *ml;
565  owl_message *m;
566  owl_fmtext *fm;
567  char *text, *ptr;
568  int place;
569
570  /* grab the first message and make sure its id is 0 */
571  ml=owl_global_get_msglist(&g);
572  m=owl_messagelist_get_element(ml, 0);
573  if (!m) return;
574  if (owl_message_get_id(m)!=0) return;
575
576  fm=owl_message_get_fmtext(m);
577  text=owl_fmtext_get_text(fm);
578
579  ptr=strstr(text, "OvO");
580  if (ptr) {
581    place=ptr-text;
582    owl_fmtext_set_char(fm, place, '-');
583    owl_fmtext_set_char(fm, place+2, '-');
584
585    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
586    if (owl_popwin_is_active(owl_global_get_popwin(&g))) {
587      owl_popwin_refresh(owl_global_get_popwin(&g));
588      /* TODO: this is a broken kludge */
589      if (owl_global_get_viewwin(&g)) {
590        owl_viewwin_redisplay(owl_global_get_viewwin(&g), 0);
591      }
592    }
593    owl_global_set_needrefresh(&g);
594    return;
595  }
596
597  ptr=strstr(text, "-v-");
598  if (ptr) {
599    place=ptr-text;
600    owl_fmtext_set_char(fm, place, 'O');
601    owl_fmtext_set_char(fm, place+2, 'O');
602
603    owl_mainwin_redisplay(owl_global_get_mainwin(&g));
604    if (owl_popwin_is_active(owl_global_get_popwin(&g))) {
605      owl_popwin_refresh(owl_global_get_popwin(&g));
606      /* TODO: this is a broken kludge */
607      if (owl_global_get_viewwin(&g)) {
608        owl_viewwin_redisplay(owl_global_get_viewwin(&g), 0);
609      }
610    }
611    owl_global_set_needrefresh(&g);
612    return;
613  }
614}
615
616/* strip leading and trailing new lines.  Caller must free the
617 * return.
618 */
619char *owl_util_stripnewlines(char *in)
620{
621 
622  char  *tmp, *ptr1, *ptr2, *out;
623
624  ptr1=tmp=owl_strdup(in);
625  while (ptr1[0]=='\n') {
626    ptr1++;
627  }
628  ptr2=ptr1+strlen(ptr1)-1;
629  while (ptr2>ptr1 && ptr2[0]=='\n') {
630    ptr2[0]='\0';
631    ptr2--;
632  }
633
634  out=owl_strdup(ptr1);
635  owl_free(tmp);
636  return(out);
637}
638
639/* Delete the line matching "line" from the named file.  If no such
640 * line is found the file is left intact.  If backup==1 then create a
641 * backupfile containing the original contents.  This is an
642 * inefficient impelementation which reads the entire file into
643 * memory.
644 */
645void owl_util_file_deleteline(char *filename, char *line, int backup)
646{
647  char buff[LINE], *text;
648  char *backupfilename="";
649  FILE *file, *backupfile=NULL;
650  int size, newline;
651
652  /* open the file for reading */
653  file=fopen(filename, "r");
654  if (!file) {
655    owl_function_error("Error opening file %s", filename);
656    return;
657  }
658
659  /* open the backup file for writing */
660  if (backup) {
661    backupfilename=owl_sprintf("%s.backup", filename);
662    backupfile=fopen(backupfilename, "w");
663    if (!backupfile) {
664      owl_function_error("Error opening file %s for writing", backupfilename);
665      owl_free(backupfilename);
666      return;
667    }
668    owl_free(backupfilename);
669  }
670
671  /* we'll read the entire file into memory, minus the line we don't want and
672   * and at the same time create the backup file if necessary
673   */
674  text=owl_malloc(LINE);
675  strcpy(text, "");
676  size=LINE;
677  while (fgets(buff, LINE, file)!=NULL) {
678    /* strip the newline */
679    newline=0;
680    if (buff[strlen(buff)-1]=='\n') {
681      buff[strlen(buff)-1]='\0';
682      newline=1;
683    }
684   
685    /* if we don't match the line, add to saved text in memory */
686    if (strcasecmp(buff, line)) {
687      size+=LINE;
688      text=owl_realloc(text, size);
689      strcat(text, buff);
690      if (newline) strcat(text, "\n");
691    }
692
693    /* write to backupfile if necessary */
694    if (backup) {
695      fputs(buff, backupfile);
696      if (newline) fputs("\n", backupfile);
697    }
698  }
699  if (backup) fclose(backupfile);
700  fclose(file);
701
702  /* now rewrite the original file from memory */
703  file=fopen(filename, "w");
704  if (!file) {
705    owl_function_error("WARNING: Error opening %s for writing.  Use %s to restore.", filename, backupfilename);
706    owl_function_beep();
707    owl_free(line);
708    return;
709  }
710
711  fputs(text, file);
712  fclose(file);
713}
714
715/* add the string 'str' to the list 'list' of strings, only if it
716 * is not already present
717 */
718void owl_util_list_add_unique_string(owl_list *list, char *str)
719{
720  int i, j;
721
722  j=owl_list_get_size(list);
723  for (i=0; i<j; i++) {
724    if (!strcmp(str, owl_list_get_element(list, i))) return;
725  }
726  owl_list_append_element(list, owl_strdup(str));
727}
728
729int owl_util_common_strings_in_lists(owl_list *a, owl_list *b)
730{
731  int i, j, x, y;
732
733  j=owl_list_get_size(a);
734  for (i=0; i<j; i++) {
735    y=owl_list_get_size(b);
736    for (x=0; x<y; x++) {
737      if (!strcmp(owl_list_get_element(a, i), owl_list_get_element(b, x))) return(1);
738    }
739  }
740  return(0);
741}
742
743int owl_util_max(int a, int b)
744{
745  if (a>b) return(a);
746  return(b);
747}
748
749int owl_util_min(int a, int b)
750{
751  if (a<b) return(a);
752  return(b);
753}
754
755/* Return the base class or instance from a zephyr class, by removing
756   leading `un' or trailing `.d'.
757   The caller is responsible for freeing the allocated string.
758*/
759char * owl_util_baseclass(char * class)
760{
761  char *start, *end;
762
763  start = class;
764  while(!strncmp(start, "un", 2)) {
765    start += 2;
766  }
767
768  start = owl_strdup(start);
769  end = start + strlen(start) - 1;
770  while(*end == 'd' && *(end-1) == '.') {
771    end -= 2;
772  }
773  *(end + 1) = 0;
774
775  return start;
776}
777
778/**************************************************************************/
779/************************* REGRESSION TESTS *******************************/
780/**************************************************************************/
781
782#ifdef OWL_INCLUDE_REG_TESTS
783
784#include "test.h"
785
786int owl_util_regtest(void)
787{
788  int numfailed=0;
789
790  printf("# BEGIN testing owl_util\n");
791
792  FAIL_UNLESS("owl_util_substitute 1",
793              !strcmp("foo", owl_text_substitute("foo", "", "Y")));
794  FAIL_UNLESS("owl_text_substitute 2",
795              !strcmp("fYZYZ", owl_text_substitute("foo", "o", "YZ")));
796  FAIL_UNLESS("owl_text_substitute 3",
797              !strcmp("foo", owl_text_substitute("fYZYZ", "YZ", "o")));
798  FAIL_UNLESS("owl_text_substitute 4",
799              !strcmp("/u/foo/meep", owl_text_substitute("~/meep", "~", "/u/foo")));
800
801  FAIL_UNLESS("skiptokens 1", 
802              !strcmp("bar quux", skiptokens("foo bar quux", 1)));
803  FAIL_UNLESS("skiptokens 2", 
804              !strcmp("meep", skiptokens("foo 'bar quux' meep", 2)));
805
806  FAIL_UNLESS("owl_util_uniq 1", 
807              !strcmp("foo bar x", owl_util_uniq("foo", "bar x", "-")));
808  FAIL_UNLESS("owl_util_uniq 2", 
809              !strcmp("foo bar x", owl_util_uniq("foo", "bar -y x", "-")));
810  FAIL_UNLESS("owl_util_uniq 3", 
811              !strcmp("meep foo bar", owl_util_uniq("meep foo", "bar foo meep", "-")));
812
813  // if (numfailed) printf("*** WARNING: failures encountered with owl_util\n");
814  printf("# END testing owl_util (%d failures)\n", numfailed);
815  return(numfailed);
816}
817
818#endif /* OWL_INCLUDE_REG_TESTS */
Note: See TracBrowser for help on using the repository browser.