view mrjunejune/main.c @ 45:ac8626c7859c

[Gara] Re-writing basic logic in C and hoping that I can import that into Java.
author MrJuneJune <me@mrjunejune.com>
date Wed, 03 Dec 2025 20:51:50 -0800
parents 84672efec192
children 4532ce6d9eb8
line wrap: on
line source

/**
 *
 * MrJuneJune
 *
 *   - Server side generated my blog created using entirely in C.
 *   - Resume
 *   - What have I done?
 *   - Blogs....
 *
 */

#include "seobeo/seobeo.h"

volatile sig_atomic_t stop_server = 0;

void handle_sigint(int sig) {
  printf("Failed\n");
  stop_server = 1;
}

int main(void)
{
  Seobeo_Web_Server_Start("mrjunejune/pages", "6969", SEOBEO_MODE_EDGE, 2);
}