File: rc_oflow.c

package info (click to toggle)
fis-gtm 6.3-014-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 36,680 kB
  • sloc: ansic: 333,039; asm: 5,180; csh: 4,956; sh: 1,924; awk: 291; makefile: 66; sed: 13
file content (59 lines) | stat: -rwxr-xr-x 994 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/****************************************************************
 *								*
 *	Copyright 2001, 2009 Fidelity Information Services, Inc	*
 *								*
 *	This source code contains the intellectual property	*
 *	of its copyright holder(s), and is made available	*
 *	under a license.  If you do not know the terms of	*
 *	the license, please stop and do not read further.	*
 *								*
 ****************************************************************/

/*
 *  rc_oflow.c ---
 *
 *
 *
 */

#ifndef lint
static char rcsid[] = "$Header:$";
#endif

#include "mdef.h"
#include "gtcm.h"
#include "rc.h"
#include "rc_oflow.h"


rc_oflow *
rc_oflow_alc()
{
    rc_oflow	*rv;

    rv = (rc_oflow *)malloc(SIZEOF(rc_oflow));
    rv->page   = 0;
    rv->buff   = (char *)0;
    rv->top    = rv->size   = rv->dsid   = rv->offset = rv->zcode  = 0;

    return rv;

}


void
rc_oflow_fin(fop)
    rc_oflow *fop;
{

    if (!fop)
	return;

    if (fop->buff)
	free(fop->buff);

    free(fop);

    return;

}