hhdang6637 / embedded_linux_skeleton

Building U-Boot, Linux kernel, and Rootfs from scratch for the embedded system (raspberry-pi)
GNU General Public License v2.0
22 stars 3 forks source link

we need small library to read/write ini config file #46

Closed hhdang6637 closed 6 years ago

hhdang6637 commented 6 years ago

We're going to let user set up some things, we need store user configuration.

hhdang6637 commented 6 years ago

@quoctri1 , do you know ini config file?

quoctri1 commented 6 years ago

No, I'm not

hhdang6637 commented 6 years ago

This is an example.

` ; Test config file for ini_example.c and INIReaderTest.cpp

[protocol] ; Protocol configuration version=6 ; IPv6

[user] name = Bob Smith ; Spaces around '=' are stripped email = bob@smith.com ; And comments (like this) ignored active = true ; Test a boolean pi = 3.14159 ; Test a floating point number multi = this is a ; test multi-line value ; test

`

hhdang6637 commented 6 years ago

thanks @tranconghau for working on this