You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

url.h 200B

12345678910
  1. #ifndef URL_H
  2. #define URL_H
  3. #include "proto.h"
  4. #include "in.h"
  5. extern int parse_url ( char *url, struct protocol **proto,
  6. struct sockaddr_in *server, char **filename );
  7. #endif /* URL_H */