Former-commit-id:133dc97f67
[formerlya02aeb236c
] [formerly9f19e3f712
] [formerly133dc97f67
[formerlya02aeb236c
] [formerly9f19e3f712
] [formerly06a8b51d6d
[formerly9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]]] Former-commit-id:06a8b51d6d
Former-commit-id:9bb8decbcf
[formerly8e80217e59
] [formerly377dcd10b9
[formerly3360eb6c5f
]] Former-commit-id:377dcd10b9
Former-commit-id:e2ecdcfe33
27 lines
850 B
C
27 lines
850 B
C
/* include file containing all AODT library global variables */
|
|
#include "../inc/odtlib.h"
|
|
/* include file containing all AODT library variable definitions */
|
|
#include "../inc/odtlibdefs-x.h"
|
|
|
|
/* AODT library function */
|
|
extern int aodtv64_textscreenoutput(char *);
|
|
|
|
int aodtv64_historybullfmt(struct odtdata *historyrec,char *listing)
|
|
/* Subroutine to load AODT history file record, listed in bulletin output format,
|
|
into a character string for output within API.
|
|
Inputs : pointer to history structure entry
|
|
Outputs: intensity estimage in bulletin format (character string)
|
|
Return : 0 : o.k.
|
|
*/
|
|
{
|
|
char *retstrng;
|
|
|
|
retstrng=(char *)calloc((size_t)2000,sizeof(char));
|
|
odtcurrent_v64=historyrec;
|
|
aodtv64_textscreenoutput(retstrng);
|
|
strcpy(listing,retstrng);
|
|
listing[strlen(retstrng)]='\0';
|
|
|
|
free(retstrng);
|
|
return 0;
|
|
}
|