modified: src/db.c

sql
simon 2024-12-10 17:42:45 +01:00
parent 8f672ff5b0
commit 550a452249
1 changed files with 20 additions and 0 deletions

View File

@ -2,3 +2,23 @@
* databse
* stores current state and reads previous
*/
#include <stdio.h>
const char format[] = "{ %s = { %s}\n";
struct A {
char *s1;
char *s2;
}A;
int main(){
struct A test;
test.s1 = "asdasd";
test.s2 = "asdad";
printf(format, test.s1, test.s2);
}