/*
 * edlib v1.1 Copyright 1989 Edwin Hoogerbeets
 * This code is freely redistributable as long as no charge other than
 * reasonable copying fees are levied for it.
 */

/*
    string to lower changes all upper case letters in a string to lower
    case.
*/
#include <ctype.h>

char *stolower(str)
register char *str;
{
    register char *temp = str;

    for ( ; *temp ; temp++ )
        *temp = (char) tolower(*temp);

    return(str);
}
