Changeset 584b82 in git


Ignore:
Timestamp:
Nov 28, 2022, 4:47:29 PM (17 months ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
b3594cbd522dbba3563a80c89f0e99a9eb523ec2
Parents:
e3fd2385875172f7dad06ee5119ea14da2584462
Message:
static mytouppper/mytolower
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/iplib.cc

    re3fd23 r584b82  
    7070
    7171//int IsCmd(char *n, int tok);
    72 char mytolower(char c);
     72static char mytolower(char c);
    7373
    7474/*2
     
    14081408
    14091409/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
    1410 char mytoupper(char c)
     1410static char mytoupper(char c)
    14111411{
    14121412  if(c>=97 && c<=(97+26)) c-=32;
     
    14141414}
    14151415
    1416 char mytolower(char c)
     1416static char mytolower(char c)
    14171417{
    14181418  if(c>=65 && c<=(65+26)) c+=32;
Note: See TracChangeset for help on using the changeset viewer.