Cisco Cisco Meeting Server 2000 许可信息

下载
页码 1228
             Open Source Used In Cisco Meeting Server 2.0                                                                                                                                    826
         return;
       }
     obstack_grow (obs, text, dollar - text);
     text = dollar;
     switch (*++text)
       {
       case '0': case '1': case '2': case '3': case '4':
       case '5': case '6': case '7': case '8': case '9':
         if (no_gnu_extensions)
           {
             i = *text++ - '0';
           }
         else
           {
             for (i = 0; isdigit (to_uchar (*text)); text++)
               i = i*10 + (*text - '0');
           }
         if (i < argc)
           obstack_grow (obs, TOKEN_DATA_TEXT (argv[i]),
                         strlen (TOKEN_DATA_TEXT (argv[i])));
         break;
 
       case '#': /* number of arguments */
         shipout_int (obs, argc - 1);
         text++;
         break;
 
       case '*': /* all arguments */
       case '@': /* ... same, but quoted */
         dump_args (obs, argc, argv, ",", *text == '@');
         text++;
         break;
 
       default:
         obstack_1grow (obs, '$');
         break;
       }
   }
}
 
1.72 MIT Kerberos V5 1.11.1 
1.72.1 Available under license : 
[ NOTE: MIT has only incorporated the mechglue and spnego change, and
not the incremental propagation changes.  The filenames are different
between the Sun and MIT sources.  The actual MIT filenames appear in
the top-level README file.  Original text of Sun's LICENSE file