From: Alexey Rusakov <ktirf@altlinux.ru>
To: community@altlinux.ru
Subject: Re: [Comm] send pointer on struct to function in C
Date: Mon, 14 Mar 2005 19:27:09 +0300
Message-ID: <4235BB5D.7020109@altlinux.ru> (raw)
In-Reply-To: <4235A6A7.9020801@ricom.ru>
On 14.03.2005 17:58, Alexey Morsov wrote:
> Привет,
>
> Не могу никак понять, как в Си передать в функцию ссылку на массив
> структур ?
>
> Пояснение:
> есть структура
>
> typedef struct {
> char *name;
> char *val;
> } Options;
>
> далее я ее инициализирую
> Options cmd = {
Options cmd[] = ... , вы хотели сказать, я думаю.
> {"user", "vasya"},
> {"host", "vasya@com.ru")
А здесь не помешало бы либо добавить , { NULL, NULL }, а в функции
проверять на NULLовость ну например name, либо передавать в функцию
отдельным параметром размер массива (в примерах этот параметр не использую).
> }
>
> Теперь хочу передать своей функции ссылку на структуру cmd и имя
> параметра "user" а она должна вернуть мне значение этого параметра :)
void fn(Options *o, char **user)
{
/* ... */
user = (char *)malloc(/* ... */)
/* ... */
}
/* ... */
{
char *user;
fn(cmd, user);
/* ... */
free(user); /* например, а вообще как договоритесь */
}
/*** или ***/
char *fn(Options *o)
{
return /* ... то что нужно */
}
/* ... */
{
char *user = fn(cmd);
/* ... */
/* опять же, как договоритесь */
}
/*** или ***/
void fn(Options *o, char *user, int user_name_len)
{
strncpy(user, /* ... */, user_name_len);
}
/* ... */
{
char user[128];
fn(cmd, user, 128);
/* ... */
}
--
Alexey "Ktirf" Rusakov
next prev parent reply other threads:[~2005-03-14 16:27 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-03-14 14:58 Alexey Morsov
2005-03-14 16:01 ` Alexandr R. Ogurtzoff
2005-03-14 16:46 ` Alexey Morsov
2005-03-14 16:50 ` Alexey Morsov
2005-03-14 16:51 ` Alexandr R. Ogurtzoff
2005-03-14 17:00 ` Alexey Morsov
2005-03-14 16:27 ` Alexey Rusakov [this message]
2005-03-14 16:57 ` Alexey Morsov
2005-03-14 21:00 ` Alexandr R. Ogurtzoff
2005-03-14 21:11 ` Alexey Rusakov
2005-03-15 8:01 ` Alexey Morsov
2005-03-15 8:20 ` Denis S. Filimonov
2005-03-15 8:38 ` Alexey Morsov
2005-03-15 11:01 ` Alexey Rusakov
2005-03-15 11:34 ` Alexey Morsov
2005-03-15 11:50 ` Alexey Rusakov
2005-03-15 8:20 ` Michael Holzman
2005-03-14 21:23 ` Alexandr R. Ogurtzoff
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=4235BB5D.7020109@altlinux.ru \
--to=ktirf@altlinux.ru \
--cc=community@altlinux.ru \
/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
ALT Linux Community general discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
public-inbox-index community
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.community
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git