Tagged Questions
0
votes
2answers
70 views
v5 UUID. What is difference between UUID of the namespace and name
I am trying to generate a v5 UUID by referring to the function (http://www.ietf.org/rfc/rfc4122.txt) :
/* uuid_create_sha1_from_name -- create a version 5 (SHA-1) UUID
using a "name" from a "name ...
3
votes
1answer
438 views
Include uuid.h into Androind NDK project
I'm porting a C program onto Android using the NDK. The program uses the uuid.h or uuid/uuid.h library depending on which is available. When I compile the program, gives the error message uuid.h: No ...
0
votes
1answer
141 views
Get UUID of a device on which a given file is stored, on *NIX systems using C
Given: The path of a file on a UNIX file system
How can I get the UUID of the device it is stored on, possibly with a library call from C, in a way that is the most portable amongst UNIX like system ...
-2
votes
2answers
835 views
About Linux C - UUID
#include <stdio.h>
#include <stdlib.h>
#include <uuid/uuid.h>
int main(void) {
puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */
uuid_t uuid;
int ...
4
votes
1answer
2k views
Get BIOS UUID from C or Delphi from Win32
VMWare configuration files contains a line like
uuid.bios = "56 4d ed cf 3c cd 63 20-53 78 95 86 26 92 22 c8"
And afaik most (every?) physical BIOS has such an UUID. Is there any Windows API call ...
2
votes
2answers
2k views
How to generate a GUID in C?
I want to generate guids to insert into a SQLite database (i.e. no support from the db itself). However, I would like to have control over certain properties:
Orderedness for generating increasing ...
2
votes
2answers
1k views
Getting a volume UUID in linux
What is the easiest way to get the UUID of a hard drive partition programmically in Linux? (Using C)
1
vote
5answers
546 views
UUID generator problem
I have a uuid class that is part of a portable library that gets initialized with the following piece of code. It works fine under windows, but under linux it's
not generating UUID's correctly.
...
5
votes
2answers
1k views
How get uuid of a device/partition in linux programatically?
I am very much new to Linux programming.
My questions are:
Is there any way to read the UUID of a device or partition in Linux programmatically?
Is there any C/C++ API for user-space ...
2
votes
5answers
468 views
Simple random string generation function in C, please. Show me your art!
I'm working on a little (not so little actually) project in C (ref. this question) , and I need a little function in C that'd generate a unique and random string.
I need a small one that I can ...
9
votes
1answer
5k views
UUID library for C?
I'm looking for a UUID library for programming in C, that has a reasonable probability of being installed (or at least installable by package manager) on most modern Linux desktops, and works with ...