~ubuntu-branches/ubuntu/trusty/eb/trusty

« back to all changes in this revision

Viewing changes to libebutils/ebutils.c

  • Committer: Bazaar Package Importer
  • Author(s): Susumu OSAWA
  • Date: 2003-09-08 10:46:13 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20030908104613-xmsmhu2m2oulcmnm
Tags: 3.3.2-4
Add conflicts & replaces with libeb6 

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
int strcasecmp(const char *, const char *);
47
47
int strncasecmp(const char *, const char *, size_t);
48
48
#else /* not __STDC__ */
49
 
int strcasecmp()
 
49
int strcasecmp();
50
50
int strncasecmp();
51
51
#endif /* not __STDC__ */
52
52
#endif /* not HAVE_STRCASECMP */
115
115
    const char *program_version;
116
116
{
117
117
    printf("%s (EB Library) version %s\n", program_name, program_version);
118
 
    printf("Copyright (c) 1997, 98, 99, 2000, 01\n");
119
 
    printf("   Motoyuki Kasahara\n\n");
120
 
    printf("This is free software; you can redistribute it and/or modify\n");
121
 
    printf("it under the terms of the GNU General Public License as published by\n");
122
 
    printf("the Free Software Foundation; either version 2, or (at your option)\n");
123
 
    printf("any later version.\n\n");
124
 
    printf("This program is distributed in the hope that it will be useful,\n");
125
 
    printf("but WITHOUT ANY WARRANTY; without even the implied warranty\n");
126
 
    printf("of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n");
127
 
    printf("GNU General Public License for more details.\n");
 
118
    printf("Copyright (c) 1997, 98, 99, 2000, 01, 02\n");
 
119
    printf("   Motoyuki Kasahara\n");
128
120
    fflush(stdout);
129
121
}
130
122