Search:

Type: Posts; User: AnthonyGuevara

Search: Search took 0.01 seconds.

  1. The correct format => char *p; int size...

    The correct format =>




    char *p;
    int size = 250;

    p = malloc(size);
  2. The problematic piece of code => typedef...

    The problematic piece of code =>



    typedef struct {
    const char *get_host_entry_text;
    const char *get_remote_folder_entry_text;
    const char *get_local_mount_point_entry_text;
    const char...
  3. passing struct members to execlp issues

    I am trying to pass multiple args to g_signal_connect through a struct and it's members. I think the problem lies with execlp. I am trying to pass the struct members to it but I keep getting errors. ...
Results 1 to 3 of 3