J
John Leslie
Hi,
If I have:
struct foof {
long x;
};
void blarg(void)
{
struct foof blarg = {0};
void *vp = &blarg;
/* How do I then here increment vp->x, without using a
struct foof *? */
}
Regards,
If I have:
struct foof {
long x;
};
void blarg(void)
{
struct foof blarg = {0};
void *vp = &blarg;
/* How do I then here increment vp->x, without using a
struct foof *? */
}
Regards,