[BACK]Return to test-getsubopt.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/test-getsubopt.c between version 1.2 and 1.4

version 1.2, 2014/01/04 01:11:00 version 1.4, 2015/10/06 18:32:20
Line 1 
Line 1 
   /*      $Id$    */
   /*
    * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
    *
    * Permission to use, copy, modify, and distribute this software for any
    * purpose with or without fee is hereby granted, provided that the above
    * copyright notice and this permission notice appear in all copies.
    *
    * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
    * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
    * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
    * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
    * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
    * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
    * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
    */
   
 #if defined(__linux__) || defined(__MINT__)  #if defined(__linux__) || defined(__MINT__)
 # define _GNU_SOURCE /* getsubopt() */  #define _GNU_SOURCE /* getsubopt() */
 #endif  #endif
   
 #include <stdlib.h>  #include <stdlib.h>
   
 extern char *suboptarg;  
   
 int  int
 main(void)  main(void)
 {  {
Line 14  main(void)
Line 29  main(void)
         char token0[] = "k";          char token0[] = "k";
         char *const tokens[] = { token0, NULL };          char *const tokens[] = { token0, NULL };
         char *value = NULL;          char *value = NULL;
         return( ! (0 == getsubopt(&options, tokens, &value)          return ! (getsubopt(&options, tokens, &value) == 0
             && suboptarg == buf && value == buf+2 && options == buf+3));              && value == buf+2 && options == buf+3);
 }  }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.4

CVSweb