Search:

Type: Posts; User: miutsu

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    841

    reproducing proc

    Is it possible to reproduce a virtual file system like the proc filesystem from linux?

    It must stay in memeory and not moddify the contents of my hard drive, and also be mountable so that other...
  2. Replies
    6
    Views
    4,964

    Thank you, that worked I used: fp =...

    Thank you, that worked
    I used:


    fp = fopen("/dev/urandom", "r");
    fread(&random, sizeof(int), 1, fp);
    random = abs(random);


    and it worked perfectly, but I dont have any man pages on fread...
  3. Replies
    6
    Views
    4,964

    Actually I realy want a description of how to get...

    Actually I realy want a description of how to get these values since I plan on using them in a program to provide randomness
  4. Replies
    6
    Views
    4,964

    And since I am using a pointer do I use fscanf to...

    And since I am using a pointer do I use fscanf to get data instead?
  5. Replies
    6
    Views
    4,964

    using /dev/urandom multiple times

    I want to get a value from /dev/urandom and use the value, then assign a new value from /dev/urandom to the same variable and use that new value. This will be done in an if inside a while-loop that...
Results 1 to 5 of 5