Ignore:
Timestamp:
Oct 7, 2007, 10:39:58 PM (18 years ago)
Author:
bird
Message:

some more cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kash/mystring.h

    r1207 r1214  
    3535 */
    3636
     37#ifndef ___mystring_h
     38#define ___mystring_h
     39
    3740#include <string.h>
    38 #include "shinstance.h"
     41#include "shtypes.h" /* ssize_t */
    3942
    4043void scopyn(const char *, char *, ssize_t);
    4144int prefix(const char *, const char *);
    42 int number(shinstance *, const char *);
     45int number(struct shinstance *, const char *);
    4346int is_number(const char *);
     47#ifdef _MSC_VER
     48size_t strlcpy(char *dst, const char *src, size_t siz);
     49#endif
    4450
    4551#define equal(s1, s2)   (strcmp(s1, s2) == 0)
    4652#define scopy(s1, s2)   ((void)strcpy(s2, s1))
     53
     54#endif
Note: See TracChangeset for help on using the changeset viewer.