This is Unofficial EPICS BASE Doxygen Site
osdVME.h File Reference
#include <bsp/VME.h>
+ Include dependency graph for osdVME.h:

Go to the source code of this file.

Functions

void bcopyLongs (char *source, char *destination, int nlongs)
 

Function Documentation

void bcopyLongs ( char *  source,
char *  destination,
int  nlongs 
)

Definition at line 364 of file devLibVMEOSD.c.

365 {
366  const long *s = (long *)source;
367  long *d = (long *)destination;
368  while(nlongs--)
369  *d++ = *s++;
370 }