We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36605fd commit b9b8d3aCopy full SHA for b9b8d3a
bench/algorithm/mandelbrot/1-ffi.c
@@ -130,7 +130,7 @@ int main(int argc, char **argv)
130
xloc[i].x[j]=init_xloc(offset+j, inv);
131
}
132
133
- printf("P4\n %d %d\n",size,size);
+ printf("P4\n%d %d\n",size,size);
134
135
unsigned char* pixels = (unsigned char*)malloc(size*chunk_size*sizeof(unsigned char));
136
@@ -149,7 +149,6 @@ int main(int argc, char **argv)
149
{
150
printf("%d, ",pixels[x]);
151
}// */
152
- printf("\n");
153
unsigned char *output = MD5(pixels, size*chunk_size,NULL);
154
for(int i=0;i<16;++i)
155
0 commit comments