===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
arp-scan-1.9.7/arp-scan.c-1899-         case 'T':	/* --destaddr */
arp-scan-1.9.7/arp-scan.c:1900:            result = get_ether_addr(optarg, target_mac);
arp-scan-1.9.7/arp-scan.c-1901-            if (result != 0)
##############################################
arp-scan-1.9.7/arp-scan.c-1918-         case 'u':	/* --arpsha */
arp-scan-1.9.7/arp-scan.c:1919:            result = get_ether_addr(optarg, arp_sha);
arp-scan-1.9.7/arp-scan.c-1920-            if (result != 0)
##############################################
arp-scan-1.9.7/arp-scan.c-1924-         case 'w':	/* --arptha */
arp-scan-1.9.7/arp-scan.c:1925:            result = get_ether_addr(optarg, arp_tha);
arp-scan-1.9.7/arp-scan.c-1926-            if (result != 0)
##############################################
arp-scan-1.9.7/arp-scan.c-1929-         case 'S':	/* --srcaddr */
arp-scan-1.9.7/arp-scan.c:1930:            result = get_ether_addr(optarg, source_mac);
arp-scan-1.9.7/arp-scan.c-1931-            if (result != 0)
##############################################
arp-scan-1.9.7/arp-scan.c-2418- *      interface_name  The name of the network interface
arp-scan-1.9.7/arp-scan.c:2419: *      ip_addr         (output) The IP Address associated with the device
arp-scan-1.9.7/arp-scan.c-2420- *
##############################################
arp-scan-1.9.7/arp-scan.h-231-char *hexstring(const unsigned char *, size_t);
arp-scan-1.9.7/arp-scan.h:232:int get_ether_addr(const char *, unsigned char *);
arp-scan-1.9.7/arp-scan.h-233-int add_mac_vendor(const char *);
##############################################
arp-scan-1.9.7/ieee-oui.txt-20788-00033D	ILSHin Lab
arp-scan-1.9.7/ieee-oui.txt:20789:000366	ASM Pacific Technology
arp-scan-1.9.7/ieee-oui.txt-20790-000362	Vodtel Communications, Inc.
##############################################
arp-scan-1.9.7/utils.c-235- * address_string	The text string containing the address
arp-scan-1.9.7/utils.c:236: * ether_addr		(output) The Ethernet hardware address
arp-scan-1.9.7/utils.c-237- *
##############################################
arp-scan-1.9.7/utils.c-250-int
arp-scan-1.9.7/utils.c:251:get_ether_addr(const char *address_string, unsigned char *ether_addr) {
arp-scan-1.9.7/utils.c-252-   unsigned mac_b0, mac_b1, mac_b2, mac_b3, mac_b4, mac_b5;