#pragma ident "%Z%%M% %I% %E% SMI"
/*
* WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
*
* Openvision retains the copyright to derivative works of
* this source code. Do *NOT* create a derivative of this
* source code before consulting with your legal department.
* Do *NOT* integrate *ANY* of this source code into another
* product before consulting with your legal department.
*
* For further information, read the top-level Openvision
* copyright which is contained in the top-level MIT Kerberos
* copyright.
*
* WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
*
*/
/*
*
* Copyright 1992 by the Massachusetts Institute of Technology.
* All Rights Reserved.
*
* Export of this software from the United States of America may
* require a specific license from the United States Government.
* It is the responsibility of any person or organization contemplating
* export to obtain such a license before exporting.
*
* WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
* distribute this software and its documentation for any purpose and
* without fee is hereby granted, provided that the above copyright
* notice appear in all copies and that both that copyright notice and
* this permission notice appear in supporting documentation, and that
* the name of M.I.T. not be used in advertising or publicity pertaining
* to distribution of the software without specific, written prior
* permission. Furthermore if you modify this software you must label
* your software as modified software and not distribute it in such a
* fashion that it might be confused with the original M.I.T. software.
* M.I.T. makes no representations about the suitability of
* this software for any purpose. It is provided "as is" without express
* or implied warranty.
*
* Utilities for kdb5_edit.
*
* Some routines derived from code contributed by the Sandia National
* Laboratories. Sandia National Laboratories also makes no
* representations about the suitability of the modifications, or
* additions to this software for any purpose. It is provided "as is"
* without express or implied warranty.
*
*/
#include <k5-int.h>
#include "./kdb5_edit.h"
#ifndef HAVE_STRSTR
char *
char *s1;
char *s2;
{
int s2len;
int i;
char *temp_ptr;
temp_ptr += 1;
}
return ((char *) 0);
}
#endif /* HAVE_STRSTR */
void
char *token_in;
int *must_be_first_char;
int *num_tokens;
char *tokens_out;
{
int i, j;
int token_count = 0;
i = 0;
j = 0;
/* Eliminate Up Front Asterisks */
*must_be_first_char = 1;
for (i = 0; token_in[i] == '*'; i++) {
*must_be_first_char = 0;
}
*num_tokens = 0;
return;
}
/* Fill first token_out */
token_count++;
tokens_out[j] = token_in[i];
j++;
i++;
}
tokens_out[j] = '\0';
return;
}
/* Then All Subsequent Tokens */
if (token_in[i] == '*') {
token_count++;
tokens_out[j] = '\t';
} else {
tokens_out[j] = token_in[i];
}
i++;
j++;
}
tokens_out[j] = '\0';
token_count--;
}
return;
}
int
char *search_field;
int num_tokens;
int type;
{
char *found1;
char *found2;
char *found3;
char *local_entry;
}
}
return(0);
}