Skip to content

Instantly share code, notes, and snippets.

@taraijpn
taraijpn / check_listxattr.c
Created September 25, 2014 19:31
listxattr() test
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/xattr.h>
main(int ac, char *av[])
{
int eno = 0;
ssize_t rv = 0;
@taraijpn
taraijpn / urandtest.c
Created June 9, 2014 14:10
urand[0,1) test
#include<stdio.h>
#include<stdlib.h>
#define FMAX 12
#define RNUM 10000
double randnnA(int ir)
{
return ir / (RAND_MAX + 1);
}