From: Jeff Woods <Kazrak+kernel@cesmail.net>
To: Edward Parrilla <eparrilla@comcast.net>
Cc: linux prg <linux-c-programming@vger.kernel.org>
Subject: Re: Question about Malloc
Date: Sun, 10 Oct 2004 00:13:29 -0600 [thread overview]
Message-ID: <6.1.1.1.0.20041009235942.02fad7f8@no.incoming.mail> (raw)
In-Reply-To: <1097386256.6100.16.camel@localhost.localdomain>
At 10/10/2004 12:31 AM -0500, Edward Parrilla wrote:
>I got the following structure:
>typedef struct {
> char *file;
> char *ip_addres;
> }TABLE;
>
>then define a pointer to it:
>
>typedef TABLE *Recpointer;
>Recpointer r;
>
>I'm trying to use malloc as:
>
>r=malloc(Recpointer);
>but it gives me error.
>
>What should be the right sintax?
The word in "syntax". (A "sin tax" would be too expensive.)
"man malloc" says (in part):
>> void *calloc(size_t nmemb, size_t size);
>> void *malloc(size_t size);
>>
>> calloc() allocates memory for an array of nmemb elements of
>> size bytes each and returns a pointer to the allocated memory. The
>> memory is set to zero.
>>
>> malloc() allocates 'size' bytes and returns a pointer to the
>> allocated memory. The memory is not cleared.
If you want to allocate exactly one TABLE struct, it should be something
more like:
r=malloc(sizeof(TABLE));
assert(NULL != r);
If you want to allocate an array of TABLE structs (which the name implies),
use something like:
#define TABLE_MAX 100
r = calloc(TABLE_MAX, sizeof(TABLE));
assert(NULL != r);
>Any help would be appreciated.
RTFM: Read the manpage. Or, "Use the manpage, Luke!" It wouldn't hurt to
read K&R 2nd edition either.
--
Jeff Woods <kazrak+kernel@cesmail.net>
next prev parent reply other threads:[~2004-10-10 6:13 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-10-10 5:31 Question about Malloc Edward Parrilla
2004-10-10 6:13 ` Jeff Woods [this message]
2004-10-10 11:13 ` Jan-Benedict Glaw
2004-10-19 12:41 ` Matías Aguirre
2004-10-19 13:27 ` Jan-Benedict Glaw
2004-10-19 13:52 ` Matías Aguirre
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=6.1.1.1.0.20041009235942.02fad7f8@no.incoming.mail \
--to=kazrak+kernel@cesmail.net \
--cc=eparrilla@comcast.net \
--cc=linux-c-programming@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).