summaryrefslogtreecommitdiff
path: root/NetWare/intdef.h
diff options
context:
space:
mode:
authorMichael G. Schwern <schwern@pobox.com>2020-12-28 18:04:52 -0800
committerKarl Williamson <khw@cpan.org>2021-01-17 09:18:15 -0700
commit1604cfb0273418ed479719f39def5ee559bffda2 (patch)
tree166a5ab935a029ab86cf6295d6f3cb77da22e559 /NetWare/intdef.h
parent557ff1b2a4ecd18fe9229e7e0eb8fa123adc5670 (diff)
downloadperl-1604cfb0273418ed479719f39def5ee559bffda2.tar.gz
style: Detabify indentation of the C code maintained by the core.
This just detabifies to get rid of the mixed tab/space indentation. Applying consistent indentation and dealing with other tabs are another issue. Done with `expand -i`. * vutil.* left alone, it's part of version. * Left regen managed files alone for now.
Diffstat (limited to 'NetWare/intdef.h')
-rw-r--r--NetWare/intdef.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/NetWare/intdef.h b/NetWare/intdef.h
index 4c566c4e45..b0bcf010b5 100644
--- a/NetWare/intdef.h
+++ b/NetWare/intdef.h
@@ -47,8 +47,8 @@
//#define strcpy(x,y) NWLstrbcpy(x,y,NWstrlen(y)+1)
#define strcpy(x,y) \
- NWstrncpy(x,y,NWstrlen(y)); \
- x[NWstrlen(y)] ='\0';
+ NWstrncpy(x,y,NWstrlen(y)); \
+ x[NWstrlen(y)] ='\0';
#define strncpy(x,y,z) NWLstrbcpy(x,y,(z + 1))
#define strcat(x,y) NWLstrbcpy((x + NWstrlen(x)), y, (NWstrlen(y) +1))
#define strncmp(s1,s2,l) NWgstrncmp(s1,s2,l)
@@ -58,28 +58,28 @@
#define wsprintf NWsprintf
#define strncat(x,y,l) \
- NWsprintf("oops!!! Not yet defined for NWI18N, define in intdef.h, still using strncat\n"); \
- strncat(x,y,l);
+ NWsprintf("oops!!! Not yet defined for NWI18N, define in intdef.h, still using strncat\n"); \
+ strncat(x,y,l);
#define strdup(s1) \
- NWsprintf("oops!!! Not yet defined for NWI18N, define in intdef.h, still using strdup\n"); \
- strdup(s1);
+ NWsprintf("oops!!! Not yet defined for NWI18N, define in intdef.h, still using strdup\n"); \
+ strdup(s1);
#define strlist \
- NWsprintf("oops!!! Not yet defined for NWI18N, define in intdef.h, still using strlist\n"); \
- strlist;
+ NWsprintf("oops!!! Not yet defined for NWI18N, define in intdef.h, still using strlist\n"); \
+ strlist;
#define strlwr(s1) \
- NWsprintf("oops!!! Not yet defined for NWI18N, define in intdef.h, still using strlwr\n"); \
- strlwr(s1);
+ NWsprintf("oops!!! Not yet defined for NWI18N, define in intdef.h, still using strlwr\n"); \
+ strlwr(s1);
#define strnset(s1,l1,l2) \
- NWsprintf("oops!!! Not yet defined for NWI18N, define in intdef.h, still using strnset\n"); \
- strnset(s1,l1,l2);
+ NWsprintf("oops!!! Not yet defined for NWI18N, define in intdef.h, still using strnset\n"); \
+ strnset(s1,l1,l2);
#define strset(s1,l1) \
- NWsprintf("oops!!! Not yet defined for NWI18N, define in intdef.h, still using strset\n"); \
- strset(s1,l1);
+ NWsprintf("oops!!! Not yet defined for NWI18N, define in intdef.h, still using strset\n"); \
+ strset(s1,l1);
#endif // __INTDEF__