File: libavahi-compat-libdnssd-dev.c

package info (click to toggle)
avahi 0.8-18
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,884 kB
  • sloc: ansic: 41,028; sh: 6,097; xml: 4,594; cs: 2,185; makefile: 1,742; python: 441; cpp: 224; sed: 16
file content (12 lines) | stat: -rw-r--r-- 160 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#include <dns_sd.h>

#include <stddef.h>

int
main (void)
{
  TXTRecordRef ref;
  TXTRecordCreate (&ref, 42, NULL);
  TXTRecordDeallocate (&ref);
  return 0;
}