15 lines
252 B
C++
15 lines
252 B
C++
#include "sdd-dan.h"
|
|
#include <log.h>
|
|
#include "stdlib.h"
|
|
|
|
int declareDANStruct(dan_Source ds ){
|
|
|
|
int result=0;
|
|
int Cnt=0;
|
|
if(ds==NULL){
|
|
log_error("Invalid call to declareDANStruct, dan source not initialized \n ");
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
} |