- Add checkupdates function to count number of available updates - Add divider function to print divider symbol as argument - Update README with these modifications
10 lines
156 B
C
10 lines
156 B
C
/* See LICENSE file for copyright and license details. */
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
const char *
|
|
divider(const char *div)
|
|
{
|
|
return div;
|
|
}
|