annotate run/cast_21.d @ 1384:d3a3e0c251d8

nntp: -> http:
author thomask
date Sun, 04 Mar 2007 13:10:07 +0000
parents 52c9e86b6486
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
306
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
1 // $HeadURL$
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
2 // $Date$
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
3 // $Author$
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
4
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
5 // @author@ Tintor Marko <tm030127d@galeb.etf.bg.ac.yu>
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
6 // @date@ 2005-03-13
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
7 // @uri@ news:opsnk5ihes1w2jp2@pentium2
1384
d3a3e0c251d8 nntp: -> http:
thomask
parents: 1383
diff changeset
8 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3159
306
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
9
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
10 module dstress.run.cast_21;
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
11
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
12 bool equal(byte* a, byte* b){
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
13 return (!a || !b) ? (!a && !b) : false;
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
14 }
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
15
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
16 int main(){
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
17 return 0;
1a91b18b3260 ? / bool, implicit cast
thomask
parents:
diff changeset
18 }