aboutsummaryrefslogtreecommitdiff
path: root/contrib/notmuch-deliver/maildrop/numlib/strhpidt.c
blob: 2723af0b26dfd1896eb000bf374da2b3863967ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
** Copyright 1998 - 2000 Double Precision, Inc.
** See COPYING for distribution information.
*/

#if	HAVE_CONFIG_H
#include	"config.h"
#endif
#include	"numlib.h"
#include	<string.h>

static const char rcsid[]="$Id: strhpidt.c,v 1.5 2003/03/12 02:45:56 mrsam Exp $";

static const char xdigit[]="0123456789ABCDEF";

char *libmail_strh_pid_t(pid_t t, char *arg)
{
char	buf[sizeof(t)*2+1];
char	*p=buf+sizeof(buf)-1;
unsigned i;

	*p=0;
	for (i=0; i<sizeof(t)*2; i++)
	{
		*--p= xdigit[t & 15];
		t=t / 16;
	}
	return (strcpy(arg, p));
}