This website works better with JavaScript.
Home
Explore
Help
Sign In
tovi
/
st
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
correct LENGTH()
master
Matthias-Christian Ott
17 years ago
parent
693e2413c8
commit
c61b34e8e1
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
std.c
+ 1
- 1
std.c
View File
@ -13,7 +13,7 @@
#
include
<string.h>
#
include
<unistd.h>
#
define LENGTH(x) (sizeof
(x)
/
sizeof
(x)[0]
)
#
define LENGTH(x) (sizeof(x)
/
sizeof
((x)[0])
)
#
define MAX(a,b) (((a) > (b)) ? (a) : (b))
#
define MIN(a,b) (((a) < (b)) ? (a) : (b))
Write
Preview
Loading…
Cancel
Save