Sujet : Re: valgrind leak I can't find
De : bc (at) *nospam* freeuk.com (Bart)
Groupes : comp.lang.cDate : 22. Aug 2024, 12:01:20
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <va75pv$djqu$1@dont-email.me>
References : 1
User-Agent : Mozilla Thunderbird
On 22/08/2024 09:41, Mark Summerfield wrote:
This is the type's struct:
typedef struct {
int _size;
int _cap;
char** _values;
} VecStr;
What's with the leading underscores for member names?
It means ending with ->_ later on, which seems pointless extra clutter.