summaryrefslogtreecommitdiff
path: root/accel-pppd/utils.c
blob: 491e6507b97cde977308655ce4c584949ccce01a (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

#include "triton.h"
#include "utils.h"

#include "memdebug.h"

void __export u_inet_ntoa(in_addr_t addr, char *str)
{
	sprintf(str, "%i.%i.%i.%i", addr & 0xff, (addr >> 8) & 0xff, (addr >> 16) & 0xff, (addr >> 24) & 0xff);
}