source:
buchla-68k/libsm/str2uc.c@
9b98b6a
| Last change on this file since 9b98b6a was dade7a0, checked in by , 8 years ago | |
|---|---|
|
|
| File size: 440 bytes | |
| Rev | Line | |
|---|---|---|
| [f40a309] | 1 | /* |
| 2 | ============================================================================ | |
| 3 | str2uc(s) -- converts string s to upper case ASCII | |
| 4 | Version 2 -- 1987-06-12 -- (c) Copyright 1987 -- D.N. Lynx Crowe | |
| 5 | ============================================================================ | |
| 6 | */ | |
| 7 | ||
| [b28a12e] | 8 | #include "ram.h" |
| [e225e77] | 9 | |
| [7258c6a] | 10 | int8_t *str2uc(int8_t *s) |
| [f40a309] | 11 | { |
| [7258c6a] | 12 | register int8_t c; |
| 13 | register int8_t *r = s; | |
| [f40a309] | 14 | |
| [dade7a0] | 15 | while ((c = *s)) |
| 16 | *s++ = (int8_t)toupper(c); | |
| [f40a309] | 17 | |
| 18 | return(r); | |
| 19 | } | |
| [6262b5c] | 20 |
Note:
See TracBrowser
for help on using the repository browser.
![(please configure the [header_logo] section in trac.ini)](http://bob.lopatic.de/chrome/site/logo.png)