mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
29 lines
455 B
C
29 lines
455 B
C
|
/*
|
||
|
** 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 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));
|
||
|
}
|