mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-27 16:24:07 +02:00
move utils into util/
This commit is contained in:
parent
470aa1797b
commit
940203cf41
@ -1,5 +1,5 @@
|
||||
#include "../models/models_json.h"
|
||||
#include "../str_util.h"
|
||||
#include "../util/str.h"
|
||||
#include "controllers.h"
|
||||
|
||||
void route_get_cart_items_from_session(HttpCtx* ctx)
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "../http/http.h"
|
||||
#include "../models/models_json.h"
|
||||
#include "../str_util.h"
|
||||
#include "../util/str.h"
|
||||
#include "controllers.h"
|
||||
|
||||
void route_get_products_all(HttpCtx* ctx)
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "../http/http.h"
|
||||
#include "../models/models_json.h"
|
||||
#include "../str_util.h"
|
||||
#include "../util/str.h"
|
||||
#include "controllers.h"
|
||||
#include <string.h>
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "../http/http.h"
|
||||
#include "../models/models_json.h"
|
||||
#include "../str_util.h"
|
||||
#include "../util/str.h"
|
||||
#include "controllers.h"
|
||||
#include <string.h>
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "db_sqlite.h"
|
||||
#include "../models/models.h"
|
||||
#include "../str_util.h"
|
||||
#include "../util/str.h"
|
||||
#include "db.h"
|
||||
#include <assert.h>
|
||||
#include <sqlite3.h>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "client.h"
|
||||
#include "../str_util.h"
|
||||
#include "../util/str.h"
|
||||
#include "packet.h"
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include "server.h"
|
||||
#include "../str_util.h"
|
||||
#include "../util/str.h"
|
||||
#include "http.h"
|
||||
#include <errno.h>
|
||||
#include <netinet/in.h>
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "json.h"
|
||||
#include "../collection.h"
|
||||
#include "../str_util.h"
|
||||
#include "../util/str.h"
|
||||
#include <stdbool.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
@ -2,7 +2,7 @@
|
||||
#include "db/db_sqlite.h"
|
||||
#include "http/http.h"
|
||||
#include "models/models_json.h"
|
||||
#include "str_util.h"
|
||||
#include "util/str.h"
|
||||
#include <sqlite3.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "models.h"
|
||||
#include "../json/json.h"
|
||||
#include "../str_util.h"
|
||||
#include "../util/str.h"
|
||||
#include "models_json.h"
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "str_util.h"
|
||||
#include "str.h"
|
||||
#include "panic.h"
|
||||
#include <openssl/rand.h>
|
||||
#include <openssl/sha.h>
|
@ -1,6 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include "collection.h"
|
||||
#include "../collection.h"
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
Loading…
x
Reference in New Issue
Block a user