hi.
i've a question.
char *strsep(char **stringp, const char *delim);
what means char **stringp ??
Is it a pointer to a string?
if i do:
char lol[128];
strsep(&lol, ".");
is it correct?
tkx
hi.
i've a problem in a project i'm trying to start.
main() {
.
.
.
struct sockaddr_in serv_addr, cli_addr;
int sizeCli=sizeof(cli_addr);
.
.
.
recvfrom(sock, buffer,1424, 0, (struct sockaddr *)&cli_addr, &sizeCli);
.
.
.}
when i compile:
servdns.c:48: warning: pointer targets in passing...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.