| 5 |
|
* Convert view to beam list. |
| 6 |
|
*/ |
| 7 |
|
|
| 8 |
+ |
#include <string.h> |
| 9 |
+ |
|
| 10 |
|
#include "rholo.h" |
| 11 |
|
#include "view.h" |
| 12 |
|
#include "random.h" |
| 63 |
|
int v; |
| 64 |
|
register int h, hd; |
| 65 |
|
/* clear section flags */ |
| 66 |
< |
bzero((char *)sectlist, sizeof(sectlist)); |
| 66 |
> |
memset((char *)sectlist, '\0', sizeof(sectlist)); |
| 67 |
|
/* identify view sections */ |
| 68 |
|
for (v = 0; v <= MINRES; v++) |
| 69 |
|
for (h = 0; h <= MINRES; h++) { |
| 140 |
|
/* add samples */ |
| 141 |
|
add2blist(hd, hdbindex(hdlist[hd],gc), sampquant); |
| 142 |
|
} |
| 143 |
< |
copystruct(blp, &blist); /* transfer beam list */ |
| 143 |
> |
*blp = blist; /* transfer beam list */ |
| 144 |
|
return(sectlist); /* all done! */ |
| 145 |
|
} |
| 146 |
|
|