pop_lower.c
上传用户:dayuan858
上传日期:2007-01-04
资源大小:194k
文件大小:1k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1989 Regents of the University of California.
  3.  * All rights reserved.  The Berkeley software License Agreement
  4.  * specifies the terms and conditions for redistribution.
  5.  */
  6. /*
  7.  * Copyright (c) 1997 by Qualcomm Incorporated.
  8.  */
  9. #include <config.h>
  10. #include <stdio.h>
  11. #include <sys/types.h>
  12. #include <ctype.h>
  13. /* 
  14.  *  lower:  Convert a string to lowercase
  15.  */
  16. pop_lower (buf)
  17. char        *   buf;
  18. {
  19.     char        *   mp;
  20.     for (mp = buf; *mp; mp++)
  21.         if (isupper(*mp) && isupper(*mp)) *mp = (char)tolower((int)*mp);
  22. }