/*
 * utils.h - Declarations for misc. utility functions
 *
 * Copyright (C) 1997, George Madrid
 * All rights reserved.
 */

#ifndef INC_UTILS_H
#define INC_UTILS_H

/* ---------- Function declarations ---------- */
int strcasecmp(const char *, const char *);
void copy_cstr_to_ustr(int16 *, const char *);
void print_ustr(const int16 *);
void output_two_char_hex(const char);
int ustrcasecmp(const int16 *, const int16 *);
int utolower(int16);

#endif /* INC_UTILS_H */



