/[rdesktop]/sourceforge.net/branches/seamlessrdp-branch/rdesktop/rdesktop.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/branches/seamlessrdp-branch/rdesktop/rdesktop.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 569 by n-ki, Wed Jan 21 14:40:40 2004 UTC revision 570 by stargo, Wed Jan 21 18:02:38 2004 UTC
# Line 26  Line 26 
26  #include <sys/stat.h>           /* stat */  #include <sys/stat.h>           /* stat */
27  #include <sys/time.h>           /* gettimeofday */  #include <sys/time.h>           /* gettimeofday */
28  #include <sys/times.h>          /* times */  #include <sys/times.h>          /* times */
29    #include <ctype.h>              /* toupper */
30  #include <errno.h>  #include <errno.h>
31  #include "rdesktop.h"  #include "rdesktop.h"
32    
# Line 767  next_arg(char *src, char needle) Line 768  next_arg(char *src, char needle)
768  }  }
769    
770    
771  char *  void
772  toupper(char* p)  toupper_str(char* p)
773  {  {
774          while( *p ){          while( *p ){
775                  if( (*p >= 'a') && (*p <= 'z') )                  if( (*p >= 'a') && (*p <= 'z') )
776                          *p = *p - 32;                          *p = toupper((int) *p);
777                  p++;                  p++;
778          }          }
779  }  }

Legend:
Removed from v.569  
changed lines
  Added in v.570

  ViewVC Help
Powered by ViewVC 1.1.26