File: hex.h

package info (click to toggle)
dsniff 2.4b1%2Bdebian-30
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,080 kB
  • sloc: ansic: 10,803; sh: 152; makefile: 127
file content (19 lines) | stat: -rw-r--r-- 344 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * hex.h
 *
 * Hexadecimal conversion routines.
 *
 * Copyright (c) 2000 Dug Song <dugsong@monkey.org>
 *
 * $Id: hex.h,v 1.3 2001/03/15 08:33:06 dugsong Exp $
 */

#ifndef HEX_H
#define HEX_H

int	hex_decode(char *src, int srclen, u_char *buf, int len);

void	hex_print(const u_char *buf, int len, int offset);
	       
#endif /* HEX_H */