Changeset 0580615 in buchla-68k for libsm


Ignore:
Timestamp:
07/08/2017 02:42:31 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
342a56f
Parents:
46d8069
Message:

Point of no return.

Location:
libsm
Files:
33 edited

Legend:

Unmodified
Added
Removed
  • libsm/index.c

    r46d8069 r0580615  
    66*/
    77
    8 char *
    9 index(str, c)
    10 register char *str;
    11 register char c;
     8char *index(char *str, char c)
    129{
    1310        while (*str) {
  • libsm/memccpy.c

    r46d8069 r0580615  
    1111*/
    1212
    13 char *
    14 memccpy(s1, s2, c, n)
    15 register char *s1, *s2;
    16 register char c;
    17 register int n;
     13char *memccpy(char *s1, char *s2, char c, int n)
    1814{
    1915        while (--n >= 0)
  • libsm/memchr.c

    r46d8069 r0580615  
    99*/
    1010
    11 char *
    12 memchr(sp, c, n)
    13 register char *sp, c;
    14 register int n;
     11char *memchr(char *sp, char c, int n)
    1512{
    1613        while (--n >= 0)
  • libsm/memcmp.c

    r46d8069 r0580615  
    88*/
    99
    10 int
    11 memcmp(s1, s2, n)
    12 register char *s1, *s2;
    13 register int n;
     10int memcmp(char *s1, char *s2, int n)
    1411{
    1512        register int    diff;
  • libsm/memcmpu.c

    r46d8069 r0580615  
    88#include "ctype.h"
    99
    10 int
    11 memcmpu(s1, s2, n)
    12 register char *s1, *s2;
    13 int n;
     10int memcmpu(char *s1, char *s2, int n)
    1411{
    1512        register char c1, c2;
  • libsm/memcpy.c

    r46d8069 r0580615  
    99 */
    1010
    11 char *
    12 memcpy(s1, s2, n)
    13 register char *s1, *s2;
    14 register int n;
     11char *memcpy(char *s1, char *s2, int n)
    1512{
    1613        register char *os1 = s1;
  • libsm/memcpyw.c

    r46d8069 r0580615  
    99*/
    1010
    11 short *
    12 memcpyw(s1, s2, n)
    13 register short *s1, *s2;
    14 register int n;
     11short *memcpyw(short *s1, short *s2, int n)
    1512{
    1613        register short *os1 = s1;
  • libsm/memset.c

    r46d8069 r0580615  
    99*/
    1010
    11 char *
    12 memset(sp, c, n)
    13 register char *sp, c;
    14 register int n;
     11char *memset(char *sp, char c, int n)
    1512{
    1613        register char *sp0 = sp;
  • libsm/memsetw.c

    r46d8069 r0580615  
    99*/
    1010
    11 short *
    12 memsetw(sp, w, n)
    13 register short *sp, w, n;
     11short *memsetw(short *sp, short w, short n)
    1412{
    1513        register short *sp0 = sp;
  • libsm/rindex.c

    r46d8069 r0580615  
    66*/
    77
    8 char *
    9 rindex(str, c)
    10 register char *str;
    11 char c;
     8char *rindex(char *str, char c)
    129{
    1310        register char *cp;
  • libsm/str2lc.c

    r46d8069 r0580615  
    66*/
    77
    8 char *
    9 str2lc(s)
    10 register char *s;
     8char *str2lc(char *s)
    119{
    1210        register char c;
  • libsm/str2uc.c

    r46d8069 r0580615  
    66*/
    77
    8 char *
    9 str2uc(s)
    10 register char *s;
     8char *str2uc(char *s)
    119{
    1210        register char c;
  • libsm/strcat.c

    r46d8069 r0580615  
    99*/
    1010
    11 char *
    12 strcat(s1, s2)
    13 register char *s1, *s2;
     11char *strcat(char *s1, char *s2)
    1412{
    1513        register char *os1;
  • libsm/strccpy.c

    r46d8069 r0580615  
    1616 */
    1717
    18 char *
    19 strccpy(s1, s2, c)
    20 register char *s1, *s2, c;
     18char *strccpy(char *s1, char *s2, char c)
    2119{
    2220        register char *os1;
  • libsm/strchr.c

    r46d8069 r0580615  
    1010#define NULL    0
    1111
    12 char *
    13 strchr(sp, c)
    14 register char *sp, c;
     12char *strchr(char *sp, char c)
    1513{
    1614        do {
  • libsm/strcmp.c

    r46d8069 r0580615  
    88*/
    99
    10 int
    11 strcmp(s1, s2)
    12 register char *s1, *s2;
     10int strcmp(char *s1, char *s2)
    1311{
    1412        if(s1 == s2)
  • libsm/strcpy.c

    r46d8069 r0580615  
    99*/
    1010
    11 char *
    12 strcpy(s1, s2)
    13 register char *s1, *s2;
     11char *strcpy(char *s1, char *s2)
    1412{
    1513        register char *os1;
  • libsm/strcspn.c

    r46d8069 r0580615  
    99*/
    1010
    11 int
    12 strcspn(string, charset)
    13 char    *string;
    14 register char   *charset;
     11int strcspn(char *string, char *charset)
    1512{
    1613        register char *p, *q;
  • libsm/strfill.c

    r46d8069 r0580615  
    1313*/
    1414
    15 char *
    16 strfill(s, c, n)
    17 register char *s;
    18 register char c;
    19 register unsigned n;
     15char *strfill(char *s, char c, unsigned n)
    2016{
    2117        register unsigned i;
  • libsm/strlcmp.c

    r46d8069 r0580615  
    1515*/
    1616
    17 int
    18 strlcmp(s,l)
    19 char *s, *l[];
     17int strlcmp(char *s, char *l[])
    2018{
    2119        int     rc;
  • libsm/strlen.c

    r46d8069 r0580615  
    99
    1010
    11 int
    12 strlen(s)
    13 register char *s;
     11int strlen(char *s)
    1412{
    1513        register int n = 0;
  • libsm/strltrm.c

    r46d8069 r0580615  
    1010#include "stddefs.h"
    1111
    12 char *
    13 strltrm(s)
    14 register char *s;
     12char *strltrm(char *s)
    1513{
    1614        register char c;
  • libsm/strncat.c

    r46d8069 r0580615  
    1010*/
    1111
    12 char *
    13 strncat(s1, s2, n)
    14 register char *s1, *s2;
    15 register int n;
     12char *strncat(char *s1, char *s2, int n)
    1613{
    1714        register char *os1;
  • libsm/strncmp.c

    r46d8069 r0580615  
    99*/
    1010
    11 int
    12 strncmp(s1, s2, n)
    13 register char *s1, *s2;
    14 register int n;
     11int strncmp(char *s1, char *s2, int n)
    1512{
    1613        if (s1 == s2)
  • libsm/strncpy.c

    r46d8069 r0580615  
    99*/
    1010
    11 char *
    12 strncpy(s1, s2, n)
    13 register char *s1, *s2;
    14 register int n;
     11char *strncpy(char *s1, char *s2, int n)
    1512{
    1613        register char *os1 = s1;
  • libsm/strpbrk.c

    r46d8069 r0580615  
    99*/
    1010
    11 char *
    12 strpbrk(string, brkset)
    13 register char *string, *brkset;
     11char *strpbrk(char *string, char *brkset)
    1412{
    1513        register char *p;
  • libsm/strrchr.c

    r46d8069 r0580615  
    1111#define NULL    (char *)0
    1212
    13 char *
    14 strrchr(sp, c)
    15 register char *sp, c;
     13char *strrchr(char *sp, char c)
    1614{
    1715        register char *r;
  • libsm/strrev.c

    r46d8069 r0580615  
    1414*/
    1515
    16 char *
    17 strrev(s1, s2)
    18 char *s1;
    19 register char *s2;
     16char *strrev(char *s1, char *s2)
    2017{
    2118        register char *s3;
  • libsm/strrevi.c

    r46d8069 r0580615  
    1212*/
    1313
    14 char *
    15 strrevi(s)
    16 char *s;
     14char *strrevi(char *s)
    1715{
    1816        register char *p1, *p2;
  • libsm/strrtrm.c

    r46d8069 r0580615  
    1010#include "stddefs.h"
    1111
    12 char *
    13 strrtrm(s)
    14 char *s;
     12char *strrtrm(char *s)
    1513{
    1614        register char *lp, *rp;
  • libsm/strspn.c

    r46d8069 r0580615  
    99*/
    1010
    11 int
    12 strspn(string, charset)
    13 char *string;
    14 register char *charset;
     11int strspn(char *string, char *charset)
    1512{
    1613        register char *p, *q;
  • libsm/strtok.c

    r46d8069 r0580615  
    1313#define NULL    (char *)0
    1414
    15 extern int strspn();
    16 extern char *strpbrk();
     15extern int strspn(char *string, char *charset);
     16extern char *strpbrk(char *string, char *brkset);
    1717
    18 char *
    19 strtok(string, sepset)
    20 char *string, *sepset;
     18char *strtok(char *string, char *sepset)
    2119{
    2220        register char *p, *q, *r;
  • libsm/strtol.c

    r46d8069 r0580615  
    1212#define MBASE   ('z' - 'a' + 1 + 10)
    1313
    14 long
    15 strtol(str, ptr, base)
    16 register char *str;
    17 char **ptr;
    18 register int base;
     14long strtol(char *str, char **ptr, int base)
    1915{
    2016        register long val;
Note: See TracChangeset for help on using the changeset viewer.