summaryrefslogtreecommitdiff
path: root/src/logger/main.c
blob: a9bbb5014812900cdb9e279e80fef0512350f645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//  Weather update client
//  Connects SUB socket to tcp://localhost:5556
//  Collects weather updates and finds avg temp in zipcode
#include <zmq.h>
#include <assert.h>
#include <time.h>
#include <string.h>

int main (int argc, char *argv [])
{
   
    return 0;
}