Skip to content
Snippets Groups Projects
Commit 25d3dd4b authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

Ability to split function from main file to another file

parent 73b554e3
No related branches found
No related tags found
No related merge requests found
Showing
with 6 additions and 6 deletions
......@@ -42,7 +42,7 @@ Online [documentation](https://web.obarun.org/software/66/)
https://web.obarun.org/
* XMPP Channel:
obarun@xmpp.obarun.org
obarun@conference.xmpp.obarun.org
## Supports the project
......@@ -71,13 +71,13 @@ Some are specific to `execline` where other can be used on classic shell.
## Roadmap
This Roadmap for the next release is not writting in the stone. Feel free to make a merge request to this roadmap.
This Roadmap for the next releases is not writting in the stone. Feel free to make a merge request to this roadmap.
* [x] Revise the frontend file's keyword field by excluding the `@` symbol:
For instance, `@depends` will be `Depends`. That will allow for a file that's closer to the original INI format and less confusing for users.
* [ ] Provide a `[documentation]` section:
* [ ] Provide a `[Documentation]` section:
Enable the provision of documentation for each service using a [documentation] section. This documentation will be easily accessible by invoking the 66 doc command.
......
File moved
File moved
......@@ -401,9 +401,9 @@ static void io_setup_stdout(resolve_service_t *res)
} else if (res->type == TYPE_ONESHOT) {
_alloc_stk_(stk, strlen(res->sa.s + res->logger.destination) + SS_TREE_CURRENT_LEN + 2) ;
auto_strings(stk.s, res->sa.s + res->logger.destination, "/", SS_TREE_CURRENT) ;
stk.s[strlen(res->sa.s + res->logger.destination) + 1 + SS_TREE_CURRENT_LEN] = 0 ;
_alloc_stk_(stk, strlen(res->sa.s + res->io.fdout.destination) + SS_TREE_CURRENT_LEN + 2) ;
auto_strings(stk.s, res->sa.s + res->io.fdout.destination, "/", SS_TREE_CURRENT) ;
stk.s[strlen(res->sa.s + res->io.fdout.destination) + 1 + SS_TREE_CURRENT_LEN] = 0 ;
io_open_file(res, 1, stk.s) ;
}
......
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment