/*
 * Author:      Pierangelo Masarati
 * E-mail:      masarati@aero.polimi.it
 * Date:        August, 1999
 * Version:     1.0
 * Description:
 *              LDAP client to build a BibTeX database out of
 *              a Directory Server, with migration tools.
 *
 * Redistribution and use in source and binary forms are permitted
 * provided that the above copyright notice and this paragraph are
 * duplicated in all such forms and that any documentation,
 * advertising materials, and other materials related to such
 * distribution and use acknowledge that the software was developed
 * by Pierangelo Masarati.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 */

#ifndef L2B_UTILS_H
#define L2B_UTILS_H

extern char *strtoupper(char *s);
extern char *strtolower(char *s);
extern char *strcapitalizefirst(char *s);
extern char *tex2utf8(char *s);

#endif

