Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wine-mirror
GitHub Repository: wine-mirror/wine
Path: blob/master/libs/gsm/src/gsm_create.c
4393 views
1
/*
2
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
3
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
4
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
5
*/
6
7
static char const ident[] = "$Header: /tmp_amd/presto/export/kbs/jutta/src/gsm/RCS/gsm_create.c,v 1.4 1996/07/02 09:59:05 jutta Exp $";
8
9
#include <string.h>
10
#include <stdlib.h>
11
#include <stdio.h>
12
13
#include "gsm.h"
14
#include "private.h"
15
#include "proto.h"
16
17
gsm gsm_create P0()
18
{
19
gsm r;
20
21
r = (gsm)malloc(sizeof(struct gsm_state));
22
if (!r) return r;
23
24
memset((char *)r, 0, sizeof(*r));
25
r->nrp = 40;
26
27
return r;
28
}
29
30