mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-12-15 19:04:32 -05:00
10 lines
118 B
C
10 lines
118 B
C
|
//
|
||
|
// Created by Rishab Sharma on 16/4/21.
|
||
|
//
|
||
|
|
||
|
#include "hash.h"
|
||
|
|
||
|
float add(float a, float b) {
|
||
|
return (a + b);
|
||
|
}
|